@font-face {
  font-family: "Onest";
  src: url(/assets/fonts/Onest.ttf);
}

:root {
  --font-family: "Onest", sans-serif;
  --container-width: 88.75rem;
  --container-padding-x: 1rem;
  --transition-duration: 0.2s;

  --main-green: #00bf80;
  --main-purple: #7448ec;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: "Onest";
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 16px;
}

.section,
footer {
  padding: 120px 0 220px 0;
  border-radius: 100px 100px 0px 0px;
  margin-top: -100px;
  z-index: 1;
  position: relative;
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: none;
  font-size: 24px;
  color: #fff;
  background: #35e29e;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  width: 60px;
  height: 60px;
  transition: 0.3s;
}

.back-to-top:hover {
  background: #333;
  text-decoration: none;
}

.main-bg {
  /*background-image: url(/assets/images/main-bg.png);*/
  background: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 20%, rgba(251, 250, 130, 1) 66%, rgba(90, 233, 180, 1) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

header {
  padding: 10px 0;
  /*background-color: #fff;*/
}

/*.header {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: space-between;*/
/*}*/
header .active:after {
  content: none;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 100px;
  margin-right: 20px;
}

.logo span {
  font-size: 20px;
  font-weight: 900;
  color: #00bf80;
  line-height: 1;
}

.header_menu ul {
  display: flex;
}

.header_menu ul li {
  list-style: none;
  margin: 0 10px;
}

.header_menu ul li a {
  font-size: 20px;
  font-weight: 600;
  color: #3c3c3c;
}

.header_button a {
  font-size: 20px;
  font-weight: 700;
  color: #3c3c3c;
  padding: 22px 34px;
  border: 1px solid #3c3c3c;
}

/* Стили для бургера и мобильного меню */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

/* Стили для мобильного меню */
.mobile_menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000000;
}

.mobile_menu ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.mobile_menu ul li {
  margin-bottom: 15px;
}

.mobile_menu ul li a {
  font-size: 24px;
  font-weight: 600;
  color: #3c3c3c;
  text-decoration: none;
}

.header_contact_info {
  background-color: #3c3c3c;
  border-radius: 40px;
  padding: 40px 20px;
}

.social_buttons a {
  display: inline-block;
  margin: 10px 5px 0 0;
  padding: 10px;
  border: 1px solid #3c3c3c;
  text-decoration: none;
  color: #3c3c3c;
  border-radius: 4px;
}

/* Стили для кнопки закрытия */
.close_menu {
  font-size: 30px;
  font-weight: bold;
  color: #3c3c3c;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.wrap_nav_mobile {
  position: sticky;
  z-index: 1000;
  top: 0;
  background-color: #fff;
}

.nav_mobile ul {
  display: flex;
  justify-content: space-between;
}

.nav_mobile ul li {
  list-style: none;
  padding: 0 5px 5px 5px;
}

.nav_mobile ul li a {
  color: #3c3c3c;
  font-size: 10px;
  font-weight: 600;
}

/* Адаптивные стили */
@media (max-width: 767px) {
  header {
    padding: 10px 20px;
  }

  .header_menu,
  .header_button {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile_menu.active {
    display: block;
  }
}

@media (min-width: 767px) {
  .wrap_nav_mobile {
    display: none;
  }

  /*header {*/
  /*    position: fixed;*/
  /*    width: 100%;*/
  /*    top: 0;*/
  /*    z-index: 10;*/
  /*    -webkit-box-shadow: 0px 5px 10px 0px rgba(60, 60, 60, 0.3);*/
  /*    -moz-box-shadow: 0px 5px 10px 0px rgba(60, 60, 60, 0.3);*/
  /*    box-shadow: 0px 5px 10px 0px rgba(60, 60, 60, 0.3);*/
  /*}*/
}

/*Сайдбар справа*/
.right_sidebar_pc {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
}

.right_sidebar_pc .right_sidebar_item {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  /*background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(81, 194, 152, 1) 100%);*/
  padding: 5px 10px;
  border-radius: 10px 0 0 10px;
  max-width: 238px;
  margin: 5px 0;
  position: relative;
  right: -175px;
  transition: right 0.3s ease-in-out;
}

.right_sidebar_pc .right_sidebar_item_icon {
  margin-right: 10px;
}

.right_sidebar_pc .right_sidebar_item_text {
  font-size: 22px;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-weight: 500;
}

.right_sidebar_pc .right_sidebar_item:hover {
  right: 0;
  cursor: pointer;
}

.right_sidebar_mb {
  display: none;
  position: fixed;
  right: 50%;
  z-index: 10;
  transform: translateX(50%);
  bottom: 0;
  width: 100%;
}

.right_sidebar_mb .right_sidebar_item {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  /*background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(81, 194, 152, 1) 100%);*/
  padding: 5px 10px;
  border-radius: 10px 10px 0 0;
  margin: 0;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.right_sidebar_item_text_mb {
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 767px) {
  .right_sidebar_pc {
    display: none;
  }

  .right_sidebar_mb {
    display: flex;
  }
}

/*Карта*/
#map-container {
  margin-top: -100px;
}

.wrap_map {
  background-color: #3c3c3c;
  padding: 150px 20px 50px 20px;
}

.map_title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  position: relative;
}

.map_title h1 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.map_title span {
  color: #ffffff;
}

.map_subtitle {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-top: -20px;
}

.map_subtitle span {
  color: #ffffff;
}

.map {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: inline-block;
}

.map_img {
  width: 100%;

  height: auto;
  display: block;
}

.map_point {
  position: absolute;
  transform: translate(-50%, -50%);
  /*transform: translate(calc(-50% + var(--shift-x)), calc(-50% + var(--shift-y)));*/
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transform-origin: 0 0;
}

@media (max-width: 1024px) {
  .map_point {
    transform: translate(-42%, -35%) scale(0.8);
  }
}

@media (max-width: 768px) {
  .map_point {
    transform: translate(-45%, -40%) scale(0.8);
  }
}

@media (max-width: 480px) {
  .map_point {
    transform: translate(-40%, -40%) scale(0.7);
  }
}

.map_point_r {
  flex-direction: row;
}

.map_point_rr {
  flex-direction: row-reverse;
}

.map_point_c {
  flex-direction: column;
}

.map_point_cr {
  flex-direction: column-reverse;
}

.map_point_icon {
  margin: 5px;
}

.map_point_icon svg {
  width: 20px;
  height: auto;
}

.map_point_name {
  font-size: 14px;
  background-color: #3c3c3c;
  padding: 5px 10px;
  border-radius: 50px;
  color: #fffa80;
}

.city_name_display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background-color: #3c3c3c;
  padding: 10px;
  border-radius: 50px;
  color: #fffa80;
  display: none;
  z-index: 10;
  text-align: center;
}

@media (max-width: 767px) {
  .map_point_name {
    /*display: none;*/
    opacity: 0;
  }
}

@media (min-width: 767px) {
  .city_name_display {
    display: none;
  }
}

/*.map_point_name {*/
/*    display: none;*/
/*}*/
/*.map_point_icon:hover + .map_point_name {*/
/*    display: block;*/
/*}*/

@media (max-width: 768px) {
  .map_point_name {
    font-size: 12px;
    padding: 3px 6px;
  }
}

.wrap_clients_logo {
  background-color: #65746e;
}

.clients_logo {
  width: 100%;
  overflow: hidden;
}

.clients_logo .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear;
}

.clients_logo .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clients_logo .swiper-slide img {
  /*max-width: 100px;*/
  /*height: auto;*/
  height: 50px;
  padding: 5px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  transition: 0.2s;
}

.clients_logo .swiper-slide img:hover {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
  filter: none;
}

.wrap_map_advantages {
  background-color: #3c3c3c;
  padding: 70px 0;
}

.map_advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  perspective: 1000px;
}

.map_advantages_item {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.map_advantages_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4dc196, #fff500, #fc0606, #3c3c3c);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map_advantages_item:hover::before {
  opacity: 1;
}

.map_advantages_item::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.map_advantages_item:hover {
  transform: translateY(-10px) rotateX(5deg);
  -webkit-box-shadow: 0px 10px 20px 10px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 0px 10px 20px 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0px 10px 20px 10px rgba(255, 255, 255, 0.2);
}

.map_advantages_item:hover::after {
  opacity: 1;
}

.map_advantages_item_icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 10px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.map_advantages_item:hover .map_advantages_item_icon {
  transform: scale(1.1) rotate(5deg);
}

.map_advantages_item:nth-child(1) .map_advantages_item_icon {
  background: linear-gradient(135deg, rgba(77, 193, 150, 0.1) 0%, rgba(77, 193, 150, 0.2) 100%);
}

.map_advantages_item:nth-child(2) .map_advantages_item_icon {
  background: #00bf80;
}

.map_advantages_item:nth-child(3) .map_advantages_item_icon {
  background: linear-gradient(135deg, rgba(252, 6, 6, 0.1) 0%, rgba(252, 6, 6, 0.2) 100%);
}

.map_advantages_item:nth-child(4) .map_advantages_item_icon {
  background: linear-gradient(135deg, rgba(60, 60, 60, 0.1) 0%, rgba(60, 60, 60, 0.2) 100%);
}

.map_advantages_item_icon svg {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.map_advantages_item:hover .map_advantages_item_icon svg {
  transform: scale(1.1);
}

.map_advantages_item_info {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.map_advantages_item:hover .map_advantages_item_info {
  transform: translateY(5px);
}

.map_advantages_item_info1 {
  font-weight: 500;
  background: linear-gradient(90deg, #4dc196, #3aa37d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.map_advantages_item_info2_small {
  display: block;
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.map_advantages_item:hover .map_advantages_item_info2_small {
  color: #555;
}

.map_advantages_item_info2_bold {
  font-weight: 600;
  font-size: 20px;
  color: #3c3c3c;
}

.map_advantages_item_info3 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #fc0606, #d40505);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.map_advantages_item_info4 {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.map_advantages_item_info4 b {
  font-weight: 700;
  background: linear-gradient(90deg, #3c3c3c, #555);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .map_advantages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wrap_map_advantages {
    padding: 70px 0;
  }

  .map_advantages {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .map_advantages_item {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .map_advantages_item_info {
    font-size: 16px;
  }

  .map_advantages_item_info3 {
    font-size: 20px;
  }

  .map_advantages_item_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}

/*
.wrap_map_advantages {
    background-color: #3C3C3C;
    padding: 70px 0;
}
.map_advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-self: center;
    gap: 20px;
}
@media (max-width: 1399px) {
    .map_advantages {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .map_advantages {
        grid-template-columns: repeat(1, 1fr);
    }
}
.map_advantages_item {
    background: rgb(90,233,180);
    background: linear-gradient(0deg, rgba(90,233,180,1) 0%, rgba(239,227,158,1) 100%);
    width: 320px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    height: 160px;
    margin: 5px;
}
.map_advantages_item_icon {
    margin-right: 20px;
}
.map_advantages_item_info1 {
    font-size: 22px;
    color: #282842;
    font-weight: 700;
}
.map_advantages_item_info2 {
    color: 282842;
}
.map_advantages_item_info2_small {
    font-size: 15px;
}
.map_advantages_item_info2_bold {
    font-size: 22px;
    font-weight: 700;
}
.map_advantages_item_info3 {
    font-size: 24px;
    color: #FC0606;
    font-weight: 900;
}
.map_advantages_item_info4 {
    font-size: 22px;
    color: #282842;
}
*/
.main {
  height: 100%;
  padding: 50px 0 150px 0;
}

.block_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main_block_title {
  font-size: 50px;
  font-weight: 700;
  color: #3c3c3c;
}

.main_block_title span {
  background-color: #35e29e;
  padding: 0 10px;
}

.main_block_button {
  margin-top: 50px;
}

.main_block_button a {
  padding: 20px 100px;
  background-color: #7b4cfa;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.main_img {
  max-width: 700px;
}

.text-blocks {
  display: flex;
  flex-direction: column;
}

.text-item {
  font-size: 26px;
  font-weight: 500;
  background-color: #fff;
  color: #3c3c3c;
  padding: 15px 40px;
  margin: 10px 0;
  text-align: center;
  display: inline;
  text-wrap: nowrap;
  width: fit-content;
  position: relative;
}

.text-item_1 {
  margin-left: auto;
}

.text-item_2 {}

.text-item_3 {
  margin-left: auto;
}

.text-item_4 {}

.text-item-box {
  position: absolute;
  width: 30px;
  height: 20px;
  background-color: #fff;
  z-index: 1;
}

.text-item-box_1 {
  top: 0;
  left: -10px;
}

.text-item-box_2 {
  top: 0;
  right: -10px;
}

.text-item-box_3 {
  bottom: 0;
  left: -10px;
}

.text-item-box_4 {
  bottom: 0;
  right: -10px;
}

.image-block {
  display: flex;
  justify-content: center;
}

.image-block img {
  height: 300px;
}

.why_we {
  background-color: #3c3c3c;
}

.why_we_title_desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why_we_title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.why_we_title h2 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.why_we_title span {
  background-color: #35e29e;
  padding: 0 10px;
  color: #3c3c3c;
}

.why_we_description {
  max-width: 600px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.why_we_items {
  /*display: flex;
	flex-wrap: wrap;*/
  gap: 40px;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(25% - 40px);
  padding: 15px;
  transition: transform 0.8s;
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-5px);
  /*transform: rotateY(360deg);*/
}

.icon_title {
  display: flex;
  margin-bottom: 15px;
  flex-direction: column;
}

.card .icon {
  margin-right: 15px;
}

.card h2 {
  font-size: 18px;
  font-weight: 700;
  color: #3c3c3c;
}

.card p {
  font-size: 14px;
  font-weight: 400;
  color: #757575;
  line-height: 20px;
}

/*@media (max-width: 992px) {
  .card {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}
@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}*/
.card_box {
  position: absolute;
  width: 50px;
  height: 70px;
  background-color: #fff;
  z-index: -1;
}

.card_box1 {
  top: -10px;
  left: -10px;
}

.card_box2 {
  top: -10px;
  right: -10px;
}

.card_box3 {
  bottom: -10px;
  left: -10px;
}

.card_box4 {
  bottom: -10px;
  right: -10px;
}

.specialists {
  background-image: url(/assets/images/main-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.block_specialists {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.specialists_info_title {
  font-size: 50px;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 20px;
}

.specialists_info_title span {
  background-color: #35e29e;
  padding: 0 10px;
  text-wrap: nowrap;
}

.specialists_info_sutitle {
  font-size: 20px;
  font-weight: 400;
  color: #3c3c3c;
  margin-bottom: 70px;
}

.specialists_info_services {
  margin-bottom: 70px;
}

.specialists_info_message {
  font-size: 14px;
  font-weight: 300;
  color: #3c3c3c;
  margin-bottom: 40px;
}

.specialists_info_button a {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background-color: #7b4cfa;
  padding: 20px 50px;
}

.specialists_img {
  margin-bottom: -360px;
  z-index: -1;
}

.specialists_img img {
  width: 100%;
  max-width: 700px;
}

.checkbox-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 600px;
}

.checkbox-container label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
  color: #3c3c3c;
}

.checkbox-container input[type="checkbox"] {
  width: 30px;
  height: 30px;
  appearance: none;
  background-color: transparent;
  border: 2px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked {
  background-color: #7b4cfa;
  border-color: #7b4cfa;
}

.checkbox-container input[type="checkbox"]:checked::after {
  content: "✔";
  color: white;
  font-size: 20px;
  position: absolute;
  top: -1px;
  left: 5px;
}

.types_of_work {
  background-color: #3c3c3c;
}

.block_types_of_work_title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.block_types_of_work_title h2 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.block_types_of_work_title span {
  background-color: #35e29e;
  padding: 0 10px;
  color: #3c3c3c;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  /*	align-items: center;*/
}

.block_types_of_work_slider {
  margin-top: 80px;
  margin-bottom: 80px;
}

.block_types_of_work_slider .swiper-slide {
  display: flex;
  flex-direction: column;
}

.block_types_of_work_slider .swiper-slide img {
  margin-bottom: 20px;
  height: 250px;
  object-fit: contain;
}

.block_types_of_work_slider .swiper-slide h3 {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
}

.block_types_of_work_slider .swiper-slide p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
}

.block_types_of_work_slider .swiper-pagination {
  position: relative;
  /*    margin-top: 50px;*/
  text-align: left;
  width: auto;
}

.block_types_of_work_slider .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  background-color: #3c3c3c;
}

.block_types_of_work_slider .swiper-pagination-bullet-active {
  background-color: #fff;
}

.block_types_of_work_slider .swiper-button-prev,
.block_types_of_work_slider .swiper-button-next {
  background-color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: relative;
}

.block_types_of_work_slider .swiper-button-prev {
  margin-right: 30px;
}

.block_types_of_work_slider .swiper-button-next {
  margin-left: 30px;
}

.block_types_of_work_slider .swiper-button-prev::after,
.block_types_of_work_slider .swiper-button-next::after {
  font-size: 24px;
  position: relative;
  color: #3c3c3c;
}

.block_types_of_work_slider .swiper-button-prev::after {
  right: 2px;
}

.block_types_of_work_slider .swiper-button-next::after {
  left: 2px;
}

.swiper-nav {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.block_types_of_work_button a {
  font-size: 24px;
  font-weight: 700;
  padding: 20px 50px;
  color: #fff;
  background-color: #7b4cfa;
}

.any_cms {
  background-color: #fbfbfb;
}

.block_any_cms {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block_any_cms_title {
  font-size: 50px;
  font-weight: 700;
  color: #3c3c3c;
}

.block_any_cms_list_cms {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.list_cms_item {
  flex: 0 1 calc(33.333% - 20px);
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
}

.list_cms_item_icon {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.list_cms_item_title {
  font-size: 22px;
  font-weight: 600;
}

.our_certificates {
  background-color: #fbfbfb;
  padding: 0 0 220px 0;
}

.block_our_certificates_title {
  font-size: 50px;
  font-weight: 700;
  color: #3c3c3c;
}

.block_our_certificates_title span {
  background-color: #35e29e;
  padding: 0 10px;
  color: #ffffff;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.block_our_certificates_slider {
  /*margin-top: 80px;*/
  /*margin-bottom: 80px;*/
}

.block_our_certificates_slider .swiper-slide {
  display: flex;
  flex-direction: column;
}

.block_our_certificates_slider .swiper-slide img {
  margin-bottom: 20px;
  height: 550px;
  object-fit: contain;
}

.block_our_certificates_slider .swiper-pagination {
  position: relative;
  text-align: left;
  width: auto;
}

.block_our_certificates_slider .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 2px solid #4dc196;
  background-color: #fbfbfb;
}

.block_our_certificates_slider .swiper-pagination-bullet-active {
  background-color: #4dc196;
}

.block_our_certificates_slider .swiper-button-prev,
.block_our_certificates_slider .swiper-button-next {
  background-color: #4dc196;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: relative;
}

.block_our_certificates_slider .swiper-button-prev {
  margin-right: 30px;
}

.block_our_certificates_slider .swiper-button-next {
  margin-left: 30px;
}

.block_our_certificates_slider .swiper-button-prev::after,
.block_our_certificates_slider .swiper-button-next::after {
  font-size: 24px;
  position: relative;
  color: #ffffff;
}

.block_our_certificates_slider .swiper-button-prev::after {
  right: 2px;
}

.block_our_certificates_slider .swiper-button-next::after {
  left: 2px;
}

.block_our_certificates_slider .swiper-nav {
  display: flex;
  align-items: center;
  margin-top: 50px;
  justify-content: center;
}

.block_our_certificates_slider .swiper-slide-prev,
.block_our_certificates_slider .swiper-slide-next {
  transform: scale(0.8) !important;
  opacity: 0.6;
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.custom-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.custom-modal .custom-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.advantages {
  background-color: #3c3c3c;
}

.block_advantages_title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.block_advantages_title span {
  background-color: #35e29e;
  padding: 0 10px;
  color: #3c3c3c;
}

.block_advantages_items {
  /*display: flex;
	flex-wrap: wrap;*/
  gap: 40px;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tariffs {
  background-color: #fbfbfb;
}

.block_tariffs_title {
  font-size: 50px;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 80px;
}

.tabs {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background-color: #f0f0f0;
  transition: background-color 0.3s;
  font-size: 24px;
  font-weight: 600;
  color: #3c3c3c;
  padding: 28px 0;
  border-bottom: 3px solid #b6b6b6;
  width: 100%;
}

.tab-button.active,
.tab-button:hover {
  border-bottom: 3px solid #3c3c3c;
}

.tab-button-abonement.active,
.tab-button-abonement:hover {
  background-color: #7b4cfa;
  color: #fff;
}

.tab-button-packet.active,
.tab-button-packet:hover {
  background-color: #32e19c;
  color: #fff;
}

.tab-button-deposit.active,
.tab-button-deposit:hover {
  background-color: #ff9339;
  color: #fff;
}

.tab-button:after {
  display: none;
}

.tab-button-abonement {
  background-color: #f3efff;
}

.tab-button-packet {
  background-color: #d7fff0;
}

.tab-button-deposit {
  background-color: #fffee5;
}

.tab-content {
  display: none;
}

.tab-content.active_tab {
  display: block;
}

.tariff {
  padding: 20px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.about_tariff {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .tariff-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: max-height 0.3s ease;
  }

  .tariff-text.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
  }

  .toggle-button {
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    float: right;
    margin: 10px 0;
  }

  #abonement .toggle-button {
    background-color: #7b4cfa;
  }

  #packet .toggle-button {
    background-color: #32e19c;
  }

  #deposit .toggle-button {
    background-color: #ff9339;
  }
}

@media (min-width: 768px) {
  .toggle-button {
    display: none;
  }

  .logo_text_mb {
    display: none;
  }
}

@media (max-width: 768px) {
  .logo_text_pc {
    display: none;
  }

  .logo_text_mb {
    margin-bottom: 10px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th,
td {
  border: 1px solid #ebebeb;
  text-align: center;
  color: #3c3c3c;
  font-size: 24px;
  font-weight: 600;
}

#abonement th,
#abonement td {
  background-color: #f3efff;
}

#packet th,
#packet td {
  background-color: #d6ffef;
}

#deposit th,
#deposit td {
  background-color: #fffde4;
}

th:first-child,
td:first-child {
  width: 30%;
}

th:not(:first-child),
td:not(:first-child) {
  width: 15%;
}

tr:first-child {
  height: 80px;
}

tr:not(:first-child) {
  height: 40px;
}

.row_tariffs_price th {
  background-color: #fff !important;
}

.column_tariffs_price {
  background-color: #fff !important;
  border: none;
  text-align: left;
  padding: 20px;
  font-size: 22px;
  font-weight: 400;
}

.border_none {
  border: none;
  background: none !important;
}

.table_title {
  font-size: 24px;
  font-weight: 700;
}

.name_tariffs_price {
  background-color: #fff;
}

.name_tariffs {
  font-size: 20px;
  font-weight: 700;
}

.tariffs_price_price {
  font-size: 30px;
  font-weight: 700;
}

#abonement .tariffs_price_price {
  color: #7b4cfa;
}

#packet .tariffs_price_price {
  color: #32e19c;
}

#deposit .tariffs_price_price {
  color: #ff9339;
}

.button_order {
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: 20px;
  padding: 15px;
}

#abonement .button_order {
  background-color: #7b4cfa;
}

#packet .button_order {
  background-color: #32e19c;
}

#deposit .button_order {
  background-color: #ff9339;
}

.button_more {
  color: #3c3c3c;
  background-color: #fff;
  display: flex;
  justify-content: center;
  font-size: 20px;
  padding: 15px;
}

.block_tariffs_mb_item {
  display: flex;
  flex-direction: column;
}

.block_tariffs_mb_item_title {
  color: #3c3c3c;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.block_tariffs_mb_item_price {
  color: #3c3c3c;
  margin-bottom: 10px;
  font-weight: 700;
}

.block_tariffs_mb_item_price span {
  font-size: 30px;
}

#abonement .block_tariffs_mb_item_price span {
  color: #7b4cfa;
}

#packet .block_tariffs_mb_item_price span {
  color: #32e19c;
}

#deposit .block_tariffs_mb_item_price span {
  color: #ff9339;
}

.block_tariffs_mb .swiper-pagination {
  position: relative;
  text-align: left;
  width: auto;
}

.block_tariffs_mb .swiper-button-prev,
.block_tariffs_mb .swiper-button-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: relative;
  font-weight: 900;
}

.block_tariffs_mb .swiper-button-prev {
  margin-right: 30px;
}

.block_tariffs_mb .swiper-button-next {
  margin-left: 30px;
}

.block_tariffs_mb .swiper-button-prev::after,
.block_tariffs_mb .swiper-button-next::after {
  font-size: 24px;
  position: relative;
  color: #3c3c3c;
}

.block_tariffs_mb .swiper-button-prev::after {
  right: 2px;
}

.block_tariffs_mb .swiper-button-next::after {
  left: 2px;
}

.swiper-nav-tabs {
  display: flex;
  align-items: center;
  margin-top: 50px;
  justify-content: center;
}

.prices {
  background-color: #fbfbfb;
  padding: 0 0 220px 0;
}

.block_prices_title {
  font-size: 50px;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 80px;
}

.block_prices_accordeon_item {
  margin: 20px auto;
  /*border: 1px solid #ddd;*/
  overflow: hidden;
  /*box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);*/
}

.block_prices_head {
  background-color: #ffffff;
  padding: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3c3c3c;
  font-size: 30px;
  font-weight: 700;
}

.block_prices_head_title span {
  color: #7b4cfa;
  white-space: nowrap;
}

.block_prices_icon {
  width: 30px;
  height: 30px;
  background-color: #f3efff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 30px;
}

.block_prices_content {
  display: none;
  padding: 30px;
  background-color: #ffffff;
  justify-content: space-between;
  flex-wrap: wrap;
}

.block_prices_content label {
  /* display: flex;
    align-items: center;*/
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  display: block;
}

.block_prices_content input[type="text"],
.block_prices_content input[type="tel"] {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #b6b6b6;
  color: #b6b6b6;
}

.block_prices_content input[type="text"]::placeholder,
.block_prices_content input[type="tel"]::placeholder {
  color: #b6b6b6;
}

.block_prices_content .buttons {
  display: flex;
  gap: 10px;
}

.block_prices_content button {
  padding: 22px 60px;
  cursor: pointer;
  border: none;
  font-size: 20px;
  font-weight: 700;
}

.block_prices_content button.primary {
  background-color: #7b4cfa;
  color: #fff;
  border: 1px solid #7b4cfa;
}

.block_prices_content button.secondary {
  background-color: #ffffff;
  color: #3c3c3c;
  border: 1px solid #3c3c3c;
}

.block_prices_content .sidebar {
  padding: 20px;
  margin-top: 10px;
  background-color: #f3efff;
}

.sidebar_title {
  font-weight: 600;
}

.block_prices_content .sidebar p {
  margin: 15px 0;
  color: #3c3c3c;
  font-size: 20px;
}

.sidebar_item {
  font-weight: 400;
  display: flex;
  align-items: center;
}

.sidebar_item svg {
  margin-right: 5px;
}

.faq {
  background-color: #fff;
}

.block_faq_title {
  font-size: 50px;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 80px;
}

.accordion {
  background-color: #fff;
  color: #3c3c3c;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  font-size: 28px;
  font-weight: 600;
  border-top: 1px solid rgba(60, 60, 60, 0.5);
}

.accordion:first-child {
  border-top: 2px solid rgba(60, 60, 60, 0.5);
}

.accordion:after {
  content: "\002B";
  color: #3c3c3c;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion .active:after {
  content: "\2212";
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 1px solid rgba(60, 60, 60, 0.5);
}

.panel:last-child {
  border-bottom: 2px solid rgba(60, 60, 60, 0.5);
}

.block_faq_faq p {
  padding: 20px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

footer {
  background-color: #3c3c3c;
  padding-bottom: 100px;
}

/*.footer {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: space-between;*/
/*}*/
.footer_title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.footer_contacts_address {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.footer_contacts_phone {
  margin-bottom: 15px;
}

.footer_contacts_mail {
  margin-bottom: 15px;
}

.footer_contacts_phone a {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.footer_contacts_mail a {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.footer_contacts_messengers {
  display: flex;
  margin-bottom: 80px;
}

.footer_contacts_messengers_link a {
  display: flex;
  align-items: center;
  padding: 20px 60px;
  border: 1px solid #fff;
  margin: 10px;
  height: 70px;
  color: #fff;
}

.footer_contacts_messengers_icon {
  margin-right: 10px;
}

.footer_menu ul {
  list-style: none;
  display: flex;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.footer_menu ul li {
  margin: 0 10px;
}

.footer_menu ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.footer_form {
  margin-bottom: 80px;
}

.footer_form_title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.footer_form_form {}

.footer_form_form form {
  display: flex;
  flex-direction: column;
}

.footer_form_form form input {
  max-width: 330px;
}

.footer_form_form_input {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #757575;
  border: none;
  color: #b6b6b6;
}

.footer_form_form_input::placeholder {
  color: #b6b6b6;
}

.footer_form_form label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
  color: #b6b6b6;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer_form_form label a {
  font-weight: 400;
  color: #b6b6b6;
  margin-left: 1px;
  text-decoration: underline;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  appearance: none;
  background-color: transparent;
  border: 1px solid #3c3c3c;
  /*border-radius: 5px;*/
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

input[type="checkbox"]:checked {
  background-color: #7b4cfa;
  border-color: #3c3c3c;
}

input[type="checkbox"]:checked::after {
  content: "✔";
  color: white;
  font-size: 15px;
  position: absolute;
  top: -2px;
  left: 3px;
}

.footer_form_form form button {
  max-width: 330px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #7b4cfa;
  border: none;
}

.footer_form_form form button:hover {
  cursor: pointer;
}

.footer_map {
  min-width: 600px;
}

.footer_map iframe {
  border-radius: 30px;
}

.modal_form_callback {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal_form_content {
  background: linear-gradient(0deg, #5ae9b4 0%, #faf34c 39%, #fbfbfb 100%);
  margin: 1% auto;
  padding: 50px;
  border: 1px solid #888;
  max-width: 550px;
  border-radius: 30px;
}

.modal_form_content h2 {
  font-size: 33px;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 30px;
}

.modal_form_callback_close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal_form_callback_close:hover,
.modal_form_callback_close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.form_callback form {
  display: flex;
  flex-direction: column;
}

.form_callback_input {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #b6b6b6;
  color: #b6b6b6;
  font-size: 14px;
}

.form_callback_input::placeholder {
  color: #b6b6b6;
}

.checkbox_privacy_policy {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.form_callback_button {
  background-color: #7b4cfa;
  color: #fff;
  padding: 18px;
  font-size: 20px;
  font-weight: 700;
  border: none;
}

.form_callback_img {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.block_tariffs_mb {
  display: none;
}

.modal-privacy-policy {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 20px;
}

.modal-content {
  background-color: #fefefe;
  margin: 1% auto;
  padding: 20px;
  border: 1px solid #888;
  max-width: 750px;
  border-radius: 20px;
}

.close-privacy-policy {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-privacy-policy:hover,
.close-privacy-policy:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal_form_cases {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal_form_cases_close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal_form_cases_close:hover,
.modal_form_cases_close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal_form_specialists {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal_form_specialists_close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal_form_specialists_close:hover,
.modal_form_specialists_close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.inset-title {
  margin-bottom: 30px;
  font-size: 18px;
  color: #3c3c3c;
  display: flex;
}

.modal_form_tariffs {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal_form_tariffs_close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal_form_tariffs_close:hover,
.modal_form_tariffs_close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.inset-title-tariffs {
  margin-bottom: 20px;
  font-size: 22px;
  color: #3c3c3c;
  display: flex;
  font-weight: 700;
}

.modal_form_tariffs_order {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal_form_tariffs_order_close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal_form_tariffs_order_close:hover,
.modal_form_tariffs_order_close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.inset-title-tariffs-order {
  margin-bottom: 20px;
  font-size: 22px;
  color: #3c3c3c;
  display: flex;
  font-weight: 700;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  transition: 0.3s all ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader.loaded .triangle,
.preloader.loaded .pen {
  animation: none;
}

.preloader-body {
  text-align: center;
}

.preloader-body p {
  position: relative;
  right: -8px;
}

.wrapper-triangle {
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  width: 304px;
  height: 250px;
  transform: translate(-50%, -50%);
}

.line-triangle {
  position: absolute;
  width: 250px;
  height: 54px;
  border: 1px solid transparent;
  transform-origin: 0 100%;
}

.line-triangle:nth-last-of-type(1) {
  left: 313px;
  bottom: -21px;
  transform: rotate(-120deg);
  transform-origin: 0 100%;
}

.line-triangle:nth-last-of-type(2) {
  left: 156px;
  top: -54px;
  transform: rotate(120deg);
  transform-origin: 0 100%;
}

.line-triangle:nth-last-of-type(3) {
  top: 217px;
  left: 0;
}

.triangle:nth-of-type(1) {
  animation: tri1 1.5s linear infinite;
}

@keyframes tri1 {
  0% {
    opacity: 0;
  }

  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.triangle:nth-of-type(2) {
  animation: tri2 1.5s linear infinite;
}

@keyframes tri2 {
  0% {
    opacity: 0;
  }

  14.28571% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.triangle:nth-of-type(3) {
  animation: tri3 1.5s linear infinite;
}

@keyframes tri3 {
  0% {
    opacity: 0;
  }

  28.57143% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.triangle:nth-of-type(4) {
  animation: tri4 1.5s linear infinite;
}

@keyframes tri4 {
  0% {
    opacity: 0;
  }

  42.85714% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.triangle:nth-of-type(5) {
  animation: tri5 1.5s linear infinite;
}

@keyframes tri5 {
  0% {
    opacity: 0;
  }

  57.14286% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.triangle:nth-of-type(6) {
  animation: tri6 1.5s linear infinite;
}

@keyframes tri6 {
  0% {
    opacity: 0;
  }

  71.42857% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.triangle:nth-of-type(7) {
  animation: tri7 1.5s linear infinite;
}

@keyframes tri7 {
  0% {
    opacity: 0;
  }

  85.71429% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.triangle {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border: 31px solid transparent;
  border-bottom: 54px solid #00e39f;
  animation: tri 1.5s linear infinite;
}

.triangle:nth-of-type(1) {
  left: 0px;
}

.triangle:nth-of-type(2) {
  left: 31px;
}

.triangle:nth-of-type(3) {
  left: 63px;
}

.triangle:nth-of-type(4) {
  left: 94px;
}

.triangle:nth-of-type(5) {
  left: 125px;
}

.triangle:nth-of-type(6) {
  left: 156px;
}

.triangle:nth-of-type(7) {
  left: 188px;
}

.triangle:nth-child(even) {
  transform: rotate(180deg);
  top: 0;
}

.triangle:nth-child(1) {
  animation: none;
}

.line:nth-child(2) .triangle:nth-child(1):before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: -22px;
  bottom: -77px;
  background: transparent;
  border: 13px solid transparent;
  border-bottom: 21px solid #f1ecdb;
  animation: tri 1.5s linear infinite;
}

.pen {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 312.5px;
  transform-origin: 50% 0;
  animation: move 1.5s cubic-bezier(0, 0, 0.5, 0.85) infinite;
}

@keyframes tri {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes move {
  0% {
    transform: scale(2.45);
  }

  100% {
    transform: scale(0.5);
  }
}

.preloader.preloader-hide {
  z-index: -99;
  opacity: 0;
}

.fade-block {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.46);
}

.hidden {
  display: none;
}

.success-form {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.46);
  color: #333;
  text-align: center;
  font-size: 20px;
  display: none;
  z-index: 9999;
}

.success-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.success-form-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  padding: 60px 30px;
}

.success-form-content .btn-close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
}

.btn-close-modal {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  background: none;
  border: none;
}

button:hover {
  cursor: pointer;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-bottom: 15px;
  display: block;
  line-height: normal;
}

.error {
  border-color: red;
}

@media (max-width: 1399px) {

  .section,
  footer {
    padding: 120px 20px 220px 20px;
  }

  .main-bg {
    padding: 0 20px;
  }
}

@media (max-width: 1199px) {

  .main_block_title,
  .specialists_info_title,
  .why_we_title,
  .why_we_title h2,
  .block_types_of_work_title,
  .block_types_of_work_title h2,
  .block_any_cms_title,
  .block_advantages_title,
  .block_tariffs_title,
  .block_prices_title,
  .block_faq_title,
  .footer_title,
  .map_subtitle,
  .map_title,
  .map_title h1,
  .block_our_certificates_title {
    font-size: 40px;
  }

  .why_we_description {
    max-width: 500px;
  }

  footer {
    padding-bottom: 50px;
  }

  .footer_map {
    max-width: 500px;
    width: 100%;
    min-width: auto;
  }

  .tab-content .block_tariffs_pc {
    display: none;
  }

  .block_tariffs_mb {
    display: block;
  }

  .block_advantages_items,
  .why_we_items {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-block img {
    height: 280px;
  }
}

@media (max-width: 991px) {

  .block_any_cms,
  .block_specialists,
  .why_we_title_desc,
  .block_main,
  .footer {
    flex-direction: column;
  }

  .why_we_description {
    max-width: 100%;
  }

  .footer_map {
    max-width: none;
  }

  .header_button {
    display: none;
  }

  .header {
    justify-content: center;
  }

  .main_img {
    margin-top: 50px;
    max-width: none;
    width: 100%;
  }

  .text-item {
    font-size: 16px;
    padding: 15px 40px;
  }

  .main_block,
  .main_block_title,
  .specialists_info_title,
  .why_we_title,
  .why_we_title h2,
  .block_types_of_work_title,
  .block_types_of_work_title h2,
  .block_any_cms_title,
  .block_advantages_title,
  .block_tariffs_title,
  .block_prices_title,
  .block_faq_title,
  .footer_title,
  .map_subtitle,
  .map_title,
  .map_title h1,
  .block_our_certificates_title {
    width: 100%;
  }

  .block_advantages_items,
  .why_we_items {
    grid-template-columns: repeat(2, 1fr);
  }

  .main_block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main_block_title {
    text-align: center;
  }

  .region-selector-footer .wrap_region {
    padding: 0 20px;
  }

  .region-selector-footer {
    font-size: 25px;
  }
}

@media (max-width: 767px) {

  .block_types_of_work_slider .swiper-button-prev,
  .block_types_of_work_slider .swiper-button-next,
  .block_our_certificates_slider .swiper-button-prev,
  .block_our_certificates_slider .swiper-button-next {
    display: none;
  }

  .block_types_of_work_slider .swiper-pagination {
    text-align: center;
    width: 100%;
  }

  .header {
    justify-content: space-between;
  }

  .d-none767 {
    display: none;
  }

  .main_block_button a {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .text-blocks {
    z-index: 2;
    position: relative;
  }

  .text-item_1 {}

  .text-item_2 {}

  .text-item_3 {}

  .text-item_4 {
    margin-left: 60px;
  }

  .image-block {
    position: relative;
  }

  .image-block-1 {
    height: 150px !important;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }

  .image-block-2 {
    height: 150px !important;
    position: absolute;
    bottom: 70px;
    right: 0;
    z-index: 1;
  }

  .main {
    padding: 50px 0 50px 0;
  }

  .section,
  footer {
    padding: 50px 20px 100px 20px;
    border-radius: 30px 30px 0px 0px;
    margin-top: -30px;
  }

  .block_any_cms_list_cms {
    grid-template-columns: repeat(2, 1fr);
  }

  .tabs {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .tab-button-abonement {
    grid-column: 1 / -1;
  }

  .tab-button-packet {
    grid-column: 1 / 2;
  }

  .tab-button-deposit {
    grid-column: 2 / 3;
  }

  .tab-button {
    font-size: 20px;
  }

  .block_advantages_items,
  .why_we_items {
    grid-template-columns: repeat(1, 1fr);
  }

  .modal_form_cases,
  .modal_form_callback,
  .modal_form_specialists,
  .modal_form_tariffs_order {
    padding-top: 0;
  }

  .modal_form_content h2 {
    font-size: 25px;
  }
}

@media (max-width: 565px) {

  .main_block_title,
  .specialists_info_title,
  .why_we_title,
  .why_we_title h2,
  .block_types_of_work_title,
  .block_types_of_work_title h2,
  .block_any_cms_title,
  .block_advantages_title,
  .block_tariffs_title,
  .block_prices_title,
  .block_faq_title,
  .footer_title,
  .block_our_certificates_title {
    font-size: 32px;
  }

  .checkbox-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .specialists_info_button a {
    font-size: 18px;
    padding: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer_contacts_messengers {
    margin-bottom: 30px;
    flex-direction: column;
    max-width: 200px;
  }

  .footer_contacts_messengers_link a {
    justify-content: center;
  }

  .footer_menu ul {
    margin-bottom: 30px;
  }

  .block_prices_content form {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .block_prices_content .buttons {
    flex-direction: column;
  }

  .block_prices_head {
    padding: 20px;
    font-size: 18px;
  }

  .text-item {
    font-size: 16px;
    padding: 15px;
    width: 100%;
  }

  .text-item_4 {
    margin-left: 0;
  }

  .accordion {
    font-size: 20px;
  }

  .region-selector-footer {
    font-size: 20px !important;
  }
}

.region-selector-header {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.region-selector-header svg {
  margin-right: 10px;
}

.region-selector-header span {
  color: #3c3c3c;
  font-weight: 900;
}

.region-selector-header strong {
  color: #00bf80;
}

.region-selector-footer {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 40px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 900;
}

.region-selector-footer .wrap_region {
  background-color: #1edd90;
  padding: 0 30px;
  border-radius: 40px;
  color: #3c3c3c;
  white-space: nowrap;
}

.region-selector-footer .wrap_region svg {
  padding-top: 13px;
}

.modal-region {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000000;
}

.modal-content-region {
  background: #ffffff;
  padding: 50px;
  margin: 10% auto;
  max-width: 650px;
  border-radius: 30px;
}

.modal-content-region h2 {
  color: #3c3c3c;
  margin-bottom: 20px;
  font-size: 40px;
}

.modal-content-region label {
  margin-bottom: 20px;
  color: #3c3c3c;
  font-size: 25px;
  display: flex;
  align-items: center;
}

.modal-content-region input {
  margin-right: 10px;
}

.modal-content-region input[type="radio"] {
  appearance: none;
  width: 30px;
  height: 30px;
  border: 3px solid #6a32fc;
  border-radius: 6px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.modal-content-region input[type="radio"]::after {
  content: "✔";
  font-size: 20px;
  color: white;
  background-color: #6a32fc;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.modal-content-region input[type="radio"]:checked::after {
  opacity: 1;
}

.modal-content-region button {
  width: 100%;
  text-align: center;
  background-color: #7b4cfa;
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 20px 0;
}

@media (max-width: 767px) {
  .region-selector-header {
    display: none;
  }

  .map_title,
  .map_title h1,
  .map_subtitle {
    font-size: 24px;
  }

  .wrap_map {
    padding: 30px 20px 30px 20px;
  }
}

@media (max-width: 664px) {
  .map_point_name {
    font-size: 7px;
  }
}

.wrap_blog {
  padding: 150px 20px 150px 20px;
  background: rgb(90, 233, 180);
  background: linear-gradient(330deg, rgba(90, 233, 180, 1) 21%, rgba(255, 250, 128, 1) 66%, rgba(251, 251, 251, 1) 98%);
  position: relative;
}

.blog_title {
  font-size: 50px;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 50px;
}

.blog_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  z-index: 2;
  position: relative;
}

.blog_list_item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.blog_list_item img {
  width: 100%;
  height: 180px;
  background: #ccc;
  object-fit: contain;
}

.blog_list_item_content {
  padding: 15px 15px 25px 15px;
}

.blog_list_item_title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.blog_list_item_data {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.blog_list_item_preview {
  margin-bottom: 30px;
  font-size: 14px;
}

.link_read {
  text-align: center;
  background: #7b4cfa;
  color: #fff;
  padding: 10px 50px;
  border: none;
  font-size: 24px;
  text-decoration: none;
}

.btn_more {
  display: block;
  text-align: center;
  background: #7b4cfa;
  color: #fff;
  padding: 10px 50px;
  border: none;
  cursor: pointer;
  margin: auto;
  font-size: 24px;
  z-index: 2;
  position: relative;
}

.btn_more:hover {
  background: #732d91;
}

#loadMore {
  margin-top: 20px;
}

/*.blog_list_item:nth-child(3n+1) {*/
/*    grid-column: span 1;*/
/*    grid-row: span 2;*/
/*}*/
/*.blog_list_item:nth-child(3n+2), .blog_list_item:nth-child(3n+3) {*/
/*    grid-column: span 1;*/
/*}*/
.blog_list_item:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}

.blog_list_item:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}

.blog_list_item:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
}

.blog_list_item:nth-child(4) {
  grid-area: 3 / 1 / 4 / 2;
}

.blog_list_item:nth-child(5) {
  grid-area: 4 / 1 / 5 / 2;
}

.blog_list_item:nth-child(6) {
  grid-area: 3 / 2 / 5 / 3;
}

.blog_list_item:nth-child(7) {
  grid-area: 5 / 1 / 7 / 2;
}

.blog_list_item:nth-child(8) {
  grid-area: 5 / 2 / 6 / 3;
}

.blog_list_item:nth-child(9) {
  grid-area: 6 / 2 / 7 / 3;
}

.blog_list_item:nth-child(10) {
  grid-area: 7 / 1 / 8 / 2;
}

.blog_list_item:nth-child(11) {
  grid-area: 8 / 1 / 9 / 2;
}

.blog_list_item:nth-child(12) {
  grid-area: 7 / 2 / 9 / 3;
}

.blog_list_item:nth-child(13) {
  grid-area: 9 / 1 / 11 / 2;
}

.blog_list_item:nth-child(14) {
  grid-area: 9 / 2 / 10 / 3;
}

.blog_list_item:nth-child(15) {
  grid-area: 10 / 2 / 11 / 3;
}

.blog_list_item:nth-child(16) {
  grid-area: 11 / 1 / 12 / 2;
}

.blog_list_item:nth-child(17) {
  grid-area: 12 / 1 / 13 / 2;
}

.blog_list_item:nth-child(18) {
  grid-area: 11 / 2 / 13 / 3;
}

.blog_img {
  position: absolute;
  right: 0;
  bottom: 70px;
  z-index: 1;
}

.blog_bread_crumbs {
  color: #4dc196;
  font-size: 18px;
  margin-bottom: 10px;
}

.blog_detail_title {
  font-size: 50px;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 10px;
}

.blog_meta {
  font-size: 20px;
  color: #000;
  opacity: 0.5;
  margin-bottom: 10px;
}

.blog_detail img {
  max-height: 500px;
  margin: 20px auto;
  display: block;
  width: 100%;
  object-fit: contain;
}

.blog_detail p {
  margin-bottom: 10px;
  font-size: 18px;
  color: #000;
  opacity: 0.8;
  line-height: 1.3;
  text-align: justify;
}

@media (max-width: 767px) {
  .wrap_blog {
    padding: 50px 20px 100px 20px;
  }

  .blog_list {
    grid-template-columns: 1fr;
  }

  .blog_list_item img {
    height: 250px !important;
  }

  .blog_list_item {
    grid-area: auto !important;
  }

  .blog_img {
    display: none;
  }
}

/*анимации*/
.open_callback,
.open_specialists,
.submit-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

.open_callback::after,
.open_specialists::after,
.submit-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.open_callback:hover::after,
.open_specialists:hover::after,
.submit-btn:hover::after {
  animation: ripple 1s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
  }
}

.list_cms_item {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.list_cms_item:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(53, 226, 158, 0.6);
}

.block_tariffs_pc td {
  transition: 0.1s;
}

.block_tariffs_pc td:hover {
  transform: scale(1.15);
}

.typing-letter {
  opacity: 0;
  transition: opacity 0.05s linear;
}

.typing-ready .typing-letter.visible {
  opacity: 1;
}

.block_prices_accordeon_item {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.block_prices_accordeon_item:hover {
  box-shadow: 0 0 15px 5px #35e29e;
  transform: scale(1.02);
}

.text-blocks {
  overflow: hidden;
}

.text-item {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.2s ease;
  will-change: transform, opacity;
}

.text-item.left {
  transform: translateX(-100px);
}

.text-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.why_we_description {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
  will-change: transform, opacity;
}

.why_we_description.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 767px) {
  .block_types_of_work_slider .swiper-slide {
    display: inline-block;
    overflow: hidden;
  }

  .block_types_of_work_slider .swiper-slide img {
    transition: 1s;
    display: block;
  }

  .block_types_of_work_slider .swiper-slide img:hover {
    transform: scale(1.2);
  }

  .block_types_of_work_slider .swiper-slide {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .block_types_of_work_slider .swiper-slide p {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px;
    z-index: 10;
  }

  .block_types_of_work_slider .swiper-slide:hover p {
    display: block;
  }

  .block_types_of_work_slider .swiper-slide p {
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
    pointer-events: none;
  }

  .block_types_of_work_slider .swiper-slide:hover p {
    opacity: 1;
    pointer-events: auto;
  }
}

.footer_contacts_messengers a {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.footer_contacts_messengers a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #00bf80;
  z-index: 0;
  transition: width 0.4s ease;
}

.footer_contacts_messengers a:hover::before {
  width: 100%;
}

.footer_contacts_messengers a span {
  position: relative;
  z-index: 1;
}

.header_menu a {
  position: relative;
  cursor: pointer;
}

.header_menu a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #00bf80;
  transition: width 0.5s;
}

.header_menu a:hover::after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  background-color: #00bf80;
  transition: width 0.5s;
}

.accordion {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.accordion:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion.active {
  background: linear-gradient(90deg, #f5f5f5, #e0e0e0);
}

.lb-widget-panel {
  right: 150px !important;
}

.wrap_bg_gif {
  padding: 0 20px;
  position: relative;
}

.wrap_bg_gif video {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /*margin: auto;*/
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block_main_gold_partner_info {
  max-width: 900px;
  padding: 200px 0 200px 0;
}

.block_main_gold_partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.block_main_gold_partner_info_title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 45px;
  color: #fff;
}

.block_main_gold_partner_info_title h1 {
  font-weight: 700;
  font-size: 45px;
  color: #fff;
}

.block_main_gold_partner_info_desk {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

/*.block_main_gold_partner_info_buttons {*/
/*    display: flex;*/
/*}*/
/*.block_main_gold_partner_info_buttons div {*/
/*    margin-right: 20px;*/
/*}*/
.btn_bg a {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  padding: 17px;
  border-radius: 4px;
  background-color: #7b4cfa;
  border: 1px solid #7b4cfa;
}

.btn_opacity_bg a {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  padding: 17px;
  border-radius: 4px;
  border: 1px solid #7b4cfa;
}

.gold_partner {
  padding: 20px;
  backdrop-filter: blur(22px);
  border-radius: 14px;
  background-color: rgba(0, 0, 0, 0.3);
}

.block_text_img {
  background-color: #f6f6f6;
  padding: 25px;
  margin-bottom: 50px;
  border-radius: 35px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.block_text_title h3 {
  font-weight: 700;
  font-size: 35px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.block_text_title h3 span {
  background-color: #35e29e;
  padding: 0 10px;
  text-wrap: nowrap;
  color: #fff;
}

.block_text_description p {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: justify;
}

.block_img {
  height: 100%;
}

.block_img video {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}

.block_img img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}

.block_text_button a {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  padding: 17px;
  border-radius: 4px;
  background-color: #7b4cfa;
  border: 1px solid #7b4cfa;
}

.big_title_cntr {
  margin: 30px 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

.big_title_cntr h2 {
  font-size: 40px;
  font-weight: 700;
}

.big_title_cntr h2 span {
  background-color: #35e29e;
  padding: 0 10px;
  text-wrap: nowrap;
  color: #fff;
}

.feature-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 50px;
  grid-template-columns: repeat(2, 1fr);
}

.feature-tile {
  background-color: #f6f6f6;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  transition: transform 0.3s ease;
  padding: 25px;
  height: 100%;
  min-height: 100%;
}

.feature-tile-2 {
  background-color: #f6f6f6;
  border-radius: 25px;
  transition: transform 0.3s ease;
  padding: 25px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5px;
}

.feature-tile:hover,
.feature-tile-2:hover {
  transform: translateY(-5px);
}

.feature-tile-2 .feature-media {
  margin-left: 10px;
}

.feature-img-mb {
  display: none;
}

.feature-img-mb img {
  margin: auto;
  display: block;
}

.feature-tile-2-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.feature-media img {
  width: 100%;
}

.feature-media video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.feature-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.feature-description {
  font-weight: 400;
  font-size: 18px;
  margin: 15px 0;
  text-align: justify;
}

.feature-description-list li {
  list-style: none;
  display: flex;
  margin-bottom: 10px;
}

.feature-description-list li svg {
  width: 25px;
  height: 25px;
  margin-right: 20px;
  min-width: 25px;
}

.feature-button {
  margin-top: auto;
  padding-top: 20px;
}

.feature-button a {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  padding: 17px;
  border-radius: 4px;
  background-color: #7b4cfa;
  border: 1px solid #7b4cfa;
}

.img_animation_up_down {
  animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.wrap_dark_bg {
  background-color: #3c3c3c;
  padding: 50px 0 10px 0;
  border-radius: 100px;
  margin-top: -100px;
  z-index: 1;
  position: relative;
}

.wrap_white_bg {
  background-color: #fff;
  padding: 50px 0 100px 0;
}

.block_services_bitrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.service_item {
  background-color: #f6f6f6;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 15px;
  align-items: center;
  transition: transform 0.2s ease;
}

.service_item:hover {
  transform: translateY(-4px);
}

.service_icon {
  width: 50px;
  height: 50px;
  display: flex;
}

.service_content {
  flex: 1;
}

.service_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #3c3c3c;
}

.service_desc {
  font-size: 16px;
  color: #757575;
}

.gold-certificate-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.gold-certificate-image {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  max-height: 90vh;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  object-fit: contain;
}

.gold-certificate-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.gold-certificate-close:hover {
  color: #ffcc00;
}

.block_main_center {
  padding: 250px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block_main_center_title {
  font-weight: 700;
  font-size: 45px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.block_main_center_title h1 {
  font-weight: 700;
  font-size: 45px;
  color: #fff;
  text-align: center;
}

.block_main_center_desc {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  max-width: 700px;
  text-align: center;
}

.block_main_center_buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.block_main_center_buttons a {
  width: 100%;
  text-align: center;
}

.block_main_center_button {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.block_main_center_button a {
  width: 100%;
  text-align: center;
}

.plugin-slider {
  /*margin: 0 0 0 50px;*/
}

.plugin-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 12px;
  height: auto;
  transition: 0.2s;
}

.plugin-slide:hover {
  background: #4dc196;
}

.plugin-slide img {
  max-width: 100px;
  margin-bottom: 12px;
}

.plugin-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.plugin-slider-button-prev,
.plugin-slider-button-next {
  cursor: pointer;
  color: #108056;
  font-size: 25px;
  margin: 0 10px;
}

.plugin-slider-pagination {
  width: auto !important;
}

.plugin-slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.plugin-slider-pagination .swiper-pagination-bullet-active {
  background: #4dc196;
}

.accordion-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 0 0 20px 0;
}

.accordion-item {
  background-color: #f6f6f6;
  border-radius: 15px;
  overflow: hidden;
  display: none;
}

.accordion-header {
  width: 100%;
  padding: 12px 30px 12px 16px;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  color: #202020;
  font-weight: 500;
  font-size: 20px;
}

.accordion-header span {
  color: #fff;
  background-color: #4dc196;
  font-size: 25px;
  padding: 5px;
  border-radius: 7px;
  margin-right: 10px;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 16px;
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 12px 16px;
}

.accordion-header.active+.accordion-content {
  display: block;
}

.show-more-btn {
  display: block;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  padding: 15px 50px;
  border-radius: 4px;
  background-color: #7b4cfa;
  border: 1px solid #7b4cfa;
  margin: 20px auto;
}

.page_text {
  padding: 50px 20px 150px 20px;
}

.block_content_text hr {
  margin: 20px 0;
}

.block_content_text p {
  margin-bottom: 10px;
  text-align: justify;
}

.block_content_text h1,
.block_content_text h2,
.block_content_text h3,
.block_content_text h4,
.block_content_text h5,
.block_content_text h6,
.block_content_text li {
  margin-bottom: 10px;
}

.block_content_text ul {
  padding-left: 20px;
  list-style: disc;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  padding-top: 4px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d0ff00, #00c4ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-list li::after {
  content: "✔";
  position: absolute;
  left: 6px;
  top: 5px;
  font-size: 16px;
  color: white;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 50px;
}

.service-card {
  background: #fff;
  border-radius: 19px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card_title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.service-card h3 {
  font-size: 18px;
}

.service-card-description {
  margin-bottom: 10px;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.service-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, #ffe100 0%, #4dc196 100%);
  transform: rotate(45deg);
}

.service-card .open_callback {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  padding: 17px;
  border-radius: 4px;
  background-color: #7b4cfa;
  border: 1px solid #7b4cfa;
  text-align: center;
  margin-top: auto;
}

.ssl-offer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ssl-image {
  /*flex: 1 1 300px;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.ssl-image img {
  max-width: 300px;
  height: auto;
}

.ssl-content {
  flex: 1 1 500px;
}

.ssl-content h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.ssl-content p {
  margin: 0 0 20px;
  font-size: 1rem;
}

.ssl-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ssl-lists ul {
  list-style: none;
  position: relative;
  margin: 0;
  flex: 1 1 200px;
}

.ssl-lists li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

.ssl-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, #ffe100 0%, #4dc196 100%);
  transform: rotate(45deg);
}

.ssl-offer .open_callback {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  padding: 17px;
  border-radius: 4px;
  background-color: #7b4cfa;
  border: 1px solid #7b4cfa;
  text-align: center;
}

@media (max-width: 768px) {
  .ssl-lists {
    justify-content: center;
  }
}

.block_cms_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.cms_item {
  border: 1px solid #4dc196;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  border-radius: 18px;
  background-color: #fff;
  transition: 0.3s;
}

.cms_item:hover {
  transform: scale(1.05);
}

.cms_item img {
  width: 300px;
  height: 150px;
  object-fit: contain;
}

.services-block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.services-block__item {
  display: flex;
  align-items: center;
  background: #f6f6f6;
  border-radius: 15px;
  padding: 20px;
  gap: 20px;
}

.services-block__number {
  width: 45px;
  height: 45px;
  border-radius: 7px;
  background: #4dc196;
  color: white;
  font-weight: bold;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-block__number:before {
  content: "";
  width: 55px;
  height: 55px;
  position: absolute;
  border: 2px solid #4dc196;
  border-radius: 7px;
}

.services-block__text {
  font-size: 20px;
  color: #202020;
}

.block_form {
  background: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(251, 250, 130, 1) 66%, rgba(90, 233, 180, 1) 100%);
  display: flex;
  align-items: center;
  border-radius: 35px;
  margin-bottom: 50px;
  padding: 30px;
  overflow: hidden;
}

.block_form_wrap {}

.block_form_title h2 {
  font-weight: 600;
  font-size: 35px;
  color: #202020;
  margin-bottom: 20px;
}

.block_form_desc {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
}

.block_form_form form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
}

.block_form_form_input {
  margin-bottom: 10px;
  background: none;
  border: none;
  border-bottom: 1px solid #e8e467;
  padding: 15px;
  font-weight: 400;
  font-size: 16px;
}

.block_form_form_input:focus {
  border: none;
  border-bottom: 1px solid #e8e467;
}

.block_form_form button {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  padding: 17px;
  border-radius: 4px;
  background-color: #7b4cfa;
  border: 1px solid #7b4cfa;
}

.block_form_img img {
  max-width: 500px;
  position: relative;
  left: 40px;
  top: 70px;
}

@media (max-width: 1199px) {
  .block_main_gold_partner_info {
    max-width: 600px;
    padding: 100px 0 100px 0;
  }

  .block_text_wht_bg {
    padding: 0 25px !important;
  }
}

@media (max-width: 991px) {
  .block_main_gold_partner_info {
    max-width: 100%;
    padding: 100px 0 0 0;
    text-align: center;
  }

  .block_main_gold_partner {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .block_main_center {
    padding: 150px 0 100px 0;
  }

  .block_cms_items {
    grid-template-columns: repeat(2, 1fr);
  }

  .block_form_img {
    display: none;
  }
}

@media (max-width: 767px) {
  .block_text_img {
    grid-template-columns: repeat(1, 1fr);
  }

  .img_animation_up_down {
    margin-top: 20px !important;
  }

  .block_img_reverse {
    grid-row: 2;
  }

  .wrap_dark_bg {
    border-radius: 30px;
  }

  .block_services_bitrix {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
  }

  .big_title_cntr h2 {
    font-size: 30px;
  }

  .block_main_gold_partner_info_title {
    font-size: 35px;
  }

  .block_main_gold_partner_info_title h1 {
    font-size: 35px;
  }

  .block_main_center_buttons {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }

  .gold_partner {
    display: none;
  }

  .block_main_gold_partner_info {
    padding: 50px 0;
  }

  .accordion-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .block_main_center {
    padding: 150px 0 100px 0;
  }

  .feature-tile-2 {
    grid-template-columns: 1fr;
  }

  .feature-img-mb {
    display: block;
  }

  .block_img {
    padding: 0 25px;
  }

  .page_text {
    padding: 30px 20px 150px 20px;
  }

  .block_text_title h3 {
    font-size: 25px;
  }

  .block_text_title h3 {
    font-size: 25px;
  }

  .block_cms_items {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 20px;
  }

  .services-block__grid {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 20px;
  }
}

@media (max-width: 576px) {
  .block_services_bitrix {
    grid-template-columns: repeat(1, 1fr);
  }

  .feature-title {
    font-size: 20px;
  }

  .cms_item img {
    width: 200px;
    height: 100px;
    object-fit: contain;
  }
}

/*.container {*/
/*  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);*/
/*  margin-inline: auto;*/
/*  padding-inline: var(--container-padding-x);*/
/*}*/

.hidden2 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 767.98px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 767.98px) {
  .visible-mobile {
    display: none !important;
  }
}

.highlight {
  color: #fff;
  background: linear-gradient(90deg, #7b4cfa 0%, #1edd90 100%);
  padding: 0 0.3125rem;
  white-space: nowrap;
}

.color-red {
  color: #df1a1a;
}

html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(0.875rem, 0.8392857143rem + 0.1785714286vw, 1rem);
  font-family: var(--font-family);
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

button,
input {
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

button:focus,
input:focus {
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
  padding: 0;
}

* {
  box-sizing: border-box;
}

main {
  flex-grow: 1;
}

.promo {
  background-color: #000;
  padding: 12rem 0 1rem 0;
}

.promo--blog {
  background-color: transparent;
  padding-bottom: 35px;
}

@media (max-width: 1023.98px) {
  .promo {
    padding: 3.75rem 0 0.625rem 0;
  }
}

.promo__title {
  font-weight: 700;
  font-size: clamp(1.625rem, 4vw, 2.875rem);
  line-height: 120%;
  text-align: center;
  color: #fff;
  max-width: 70.0625rem;
  margin: 0 auto;
}

.promo__subtitle {
  padding-top: 1.25rem;
  font-weight: 500;
  font-size: clamp(1rem, 1.3125rem, 1.5625rem);
  line-height: 120%;
  text-align: center;
  color: #fff;
  max-width: 55.5rem;
  margin: 0 auto;
}

.promo_link {
  text-align: center;
  margin: 50px 0;
}

.promo_link a {
  color: #00bf80;
  text-align: center;
  margin-bottom: 0px;
  font-size: 30px;
  text-decoration: underline;
}

.main-form .error-message {
  margin-bottom: 0;
  margin-left: 10px;
  position: absolute;
  bottom: -20px;
}

.main-form .error-message-privacy {
  margin-left: 0;
  position: relative;
  bottom: 0;
}

.promo__main-form {
  padding: 4rem 0 35px 0;
}

@media (max-width: 1023.98px) {
  .promo__main-form {
    padding: 1.875rem 0 4.375rem 0;
  }
}

.header {
  /*background-color: #000;*/
  padding-top: 1rem;
  color: #fff;
  font-weight: 500;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
}

@media (max-width: 1023.98px) {
  .header {
    padding-top: 0.75rem;
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
  padding: 1.25rem 3.125rem;
  background: rgba(18, 18, 42, 0.6);
  border-radius: 6.25rem;
}

@media (max-width: 1023.98px) {
  .header__container {
    padding: 0.625rem 1.25rem;
  }
}

.header__menu-wrapper {
  display: flex;
  gap: 2rem;
}

@media (max-width: 1023.98px) {
  .header__menu-wrapper {
    display: none;
  }
}

.header__menu-wrapper.is-open {
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  background-color: #000;
  left: 0;
  right: 0;
  top: 5.5625rem;
  z-index: 1;
}

.header__menu-wrapper.is-open .header__nav {
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.header__menu-wrapper.is-open .header__list {
  flex-direction: column;
  padding: 0;
  gap: 0.625rem;
}

.header__menu-wrapper.is-open .header__contacts {
  flex-direction: column;
  gap: 0.625rem;
}

.header__nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header__list {
  display: flex;
  gap: 1.375rem;
  align-items: center;
}

.header__contacts {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__contacts--mobile {
  display: none;
}

@media (max-width: 1023.98px) {
  .header__contacts--mobile {
    display: flex;
    flex-grow: 1;
    justify-content: end;
  }
}

@media (max-width: 767.98px) {
  .header__contacts--mobile {
    display: none;
  }
}

.header__socials {
  line-height: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.header__city {
  display: flex;
  gap: 0.3125rem;
  font-size: 0.875rem;
  color: #00bf80;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023.98px) {
  .burger {
    display: flex;
  }
}

.main-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 66.25rem;
  margin: 0 auto;
}

.main-form__inner {
  display: flex;
  gap: 0.375rem;
  border-radius: 62.5rem;
  padding: 0.375rem;
  backdrop-filter: blur(20px);
  background: rgba(18, 18, 42, 0.6);
  padding: 0.375rem;
}

@media (max-width: 1023.98px) {
  .main-form__inner {
    width: auto;
    flex-direction: column;
    border-radius: 1.25rem;
    padding: 10px;
  }
}

.main-form__submit,
.main-form input {
  border-radius: 6.25rem;
  padding: 0.875rem 1.75rem 0.875rem 0.9375rem;
  width: 15.375rem;
  backdrop-filter: blur(20px);
  background: rgba(36, 42, 69, 0.4);
  color: #fff;
}

.main-form label {
  position: relative;
  color: #00bf80;
  cursor: pointer;
  line-height: 1rem;
}

.main-form label .main-form__placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.9375rem;
}

.main-form label .main-form__placeholder span {
  color: #f10000;
}

.main-form__submit {
  background: #7b4cfa;
  color: #fff;
  margin-left: 1.875rem;
}

@media (max-width: 1023.98px) {
  .main-form__submit {
    margin-left: 0;
  }
}

.main-form__checkbox {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  /* align-self: flex-start; */
  height: 1.5rem;
  font-weight: 400;
  font-size: 0.875rem;
  color: #93dcc4;
  padding-top: 1.8125rem;
}

@media (max-width: 1023.98px) {
  .main-form__checkbox {
    max-width: 18.75rem;
    margin: 0 auto;
    height: auto;
  }
}

.main-form__checkbox input {
  display: none;
}

.custom-checkbox__checked {
  display: none;
}

input:checked~.custom-checkbox .custom-checkbox__unchecked {
  display: none;
}

input:checked~.custom-checkbox .custom-checkbox__checked {
  display: flex;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: clamp 1rem 0.9375rem 0.875rem;
  color: #bfaaf8;
  gap: 1.125rem;
}

.breadcrumbs span:last-child {
  color: #a081f5;
}

.footer {
  padding: 2.5rem 20px 0 20px;
  color: #fff;
  background: #171b2c;
  border-radius: 6.25rem 6.25rem 0 0;
}

@media (max-width: 1600px) {
  .footer {
    border-radius: 3.125rem 3.125rem 0 0;
  }
}

.footer__columns {
  padding: 2.5rem 0;
  display: flex;
  justify-content: flex-start;
  gap: 1.875rem;
}

@media (max-width: 1023.98px) {
  .footer__columns {
    flex-wrap: wrap;
    justify-content: start;
  }
}

.footer__title {
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__line {
  border: 0.0625rem solid #444;
  margin: 0 1rem;
}

.footer__contacts {
  padding: 1.875rem;
}

@media (max-width: 1023.98px) {
  .footer__contacts {
    padding: 1.875rem 0;
  }
}

.footer__city {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #bfaaf8;
  column-gap: 1.25rem;
}

.footer__city-name {
  cursor: pointer;
}

.footer__city-name.active {
  color: #a081f5;
}

.footer__city-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 120%;
  color: #fff;
  margin: 0;
}

.footer__header {
  background: #171b2c;
  padding-top: 0;
}

.footer__header .header__container {
  background: transparent;
}

@media (max-width: 767.98px) {
  .footer__header .header__container {
    justify-content: center;
  }
}

.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 1023.98px) {
  .contacts {
    display: flex;
    flex-direction: column;
  }
}

.contacts__region {
  display: flex;
  gap: 1.875rem;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.contacts__region-list {
  display: none;
  position: absolute;
  background: linear-gradient(90deg, #5ae9b4 0%, #2ce099 76.21%, #1edd90 100%);
  flex-direction: column;
  gap: 0.625rem;
  border-radius: 0 0 3.125rem 3.125rem;
  padding: 0.625rem 3.125rem 0.625rem 2.5rem;
  font-weight: 500;
  font-size: clamp(1rem, 0.9285714286rem + 0.3571428571vw, 1.25rem);
  color: #3c3c3c;
  right: 0;
  top: 1.5625rem;
  width: 100%;
}

.contacts__region-list li {
  border-bottom: 0.0625rem solid #444;
}

.contacts__region-label {
  font-weight: 500;
  font-size: clamp(1.875rem 1.5625rem 1.25rem);
}

.contacts__region-select {
  background: linear-gradient(90deg, #5ae9b4 0%, #2ce099 76.21%, #1edd90 100%);
  border-radius: 6.25rem;
  padding: 0.625rem 3.125rem 0.625rem 2.5rem;
  font-weight: 500;
  font-size: clamp(1.875rem 1.5625rem 1.25rem);
  color: #3c3c3c;
  position: relative;
  cursor: pointer;
}

.contacts__region-select::after {
  position: absolute;
  content: "";
  display: flex;
  width: 0.625rem;
  height: 0.625rem;
  /*background-image: url(/assets/icons/select-region-arrow.svg);*/
  right: 1.5625rem;
  top: 50%;
  transform: translateY(-50%);
}

.contacts__list {
  font-weight: 500;
  font-size: clamp(1.25rem 1.125rem 1rem);
  line-height: 120%;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 20px;
}

.contacts__form {
  display: flex;
  flex-direction: column;
}

.contacts__form label {
  position: relative;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  line-height: 1rem;
}

.contacts__form label:not(.main-form__checkbox) {
  display: block;
}

.contacts__form label input {
  border-bottom: 0.0625rem solid #00bf80;
  padding: 0.75rem 1rem 0.75rem 0.625rem;
  width: 100%;
  color: #fff;
}

.contacts__form label .main-form__placeholder {
  position: absolute;
  top: 16px;
  left: 20px;
}

.contacts__form label .main-form__placeholder span {
  color: #f10000;
}

.contacts__submit {
  margin: 0;
  margin-top: 1.25rem;
}

.contacts__checkbox {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1023.98px) {
  .contacts__checkbox {
    margin-top: 1.875rem;
    max-width: unset;
  }
}

.contacts__map-block {
  display: flex;
  flex-direction: column;
}

.contacts__map-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 600;
  font-size: clamp(1.125rem 1rem 0.875rem);
  color: #3c3c3c;
  background: #b0e3d0;
  border-radius: 1.25rem 1.25rem 0 0;
}

.contacts__map-tab {
  border-radius: 1.25rem 1.25rem 0 0;
  position: relative;
  padding: 0.6875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.contacts__map-tab.active {
  box-shadow: -2px 0 4px 0 rgba(57, 184, 137, 0.4);
  background: #4dc196;
  z-index: 3;
}

.contacts__map {
  flex-grow: 1;
  border-radius: 1.25rem;
  overflow: hidden;
}

@media (max-width: 1023.98px) {
  .contacts__map {
    height: 350px;
  }
}

.modal-select-region {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-select-region__inner {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.1875rem;
  font-size: 1.875rem;
}

.modal-select-region__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.modal-select-region__item {
  cursor: pointer;
  padding: 0.625rem 1.25rem;
  background: #b0e3d0;
  border-radius: 0.625rem;
}

.quick-check {
  border-radius: 6.25rem 6.25rem 0 0;
  background: linear-gradient(-15deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
  padding-bottom: 12.5rem;
  margin-bottom: -6.5rem;
}

@media (max-width: 1023.98px) {
  .quick-check {
    border-radius: 3.125rem 3.125rem 0 0;
  }
}

.quick-check__title {
  font-weight: 700;
  font-size: clamp(2.125rem, 1.5178571429rem + 3.0357142857vw, 4.25rem);
  text-align: center;
  padding-top: 4.375rem;
}

@media (max-width: 1023.98px) {
  .quick-check__title {
    padding-top: 1.875rem;
  }
}

.quick-check__decr {
  max-width: 88.75rem;
  margin: 0 auto;
  font-size: clamp(1.25rem, 1.1428571429rem + 0.5357142857vw, 1.625rem);
  line-height: 131%;
  text-align: center;
  padding: 1rem;
}

.quick-check__main-form {
  padding: 4.25rem 0;
  color: #fff;
}

@media (max-width: 1023.98px) {
  .quick-check__main-form {
    padding: 1.75rem 0;
  }
}

.quick-check__main-form .main-form__placeholder {
  color: #fff;
}

.quick-check__main-form .main-form__checkbox {
  color: #000;
}

.check-list {
  color: #202020;
  background: #3c3c3c;
  padding-bottom: 12.5rem;
  margin-bottom: -12.5rem;
  padding-top: 2.25rem;
  border-radius: 6.25rem 6.25rem 0 0;
}

@media (max-width: 1023.98px) {
  .check-list {
    padding-top: 1.25rem;
    border-radius: 3.125rem 3.125rem 0 0;
  }
}

.check-list__title {
  font-weight: 600;
  font-size: clamp(1.6875rem, 0.9553571429rem + 3.6607142857vw, 4.25rem);
  line-height: 110%;
  text-align: center;
  color: #fefdfd;
  max-width: 79rem;
  margin: 0 auto;
}

.check-list__descr {
  font-weight: 400;
  padding-top: 2.0625rem;
  font-size: clamp(1.125rem, 0.9821428571rem + 0.7142857143vw, 1.625rem);
  text-align: center;
  color: #fefdfd;
  max-width: 79rem;
  margin: 0 auto;
}

.check-list__form {
  padding-top: 5rem;
  margin-bottom: 50px;
}

@media (max-width: 1023.98px) {
  .check-list__form {
    padding-top: 2.5rem;
  }
}

.check-list__block {
  padding: 2.0625rem 2.8125rem 0.625rem 2.8125rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 0.75rem;
  min-height: 31.25rem;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1023.98px) {
  .check-list__block {
    padding: 0.75rem;
  }
}

.check-list__block-title {
  font-weight: 600;
  font-size: clamp(1.5625rem, 1.3839285714rem + 0.8928571429vw, 2.1875rem);
  color: #202020;
  margin: 5px 0;
}

.check-list__block-descr {
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: #5a5a5a;
  padding-top: 22px;
  margin-bottom: 10px;
}

.check-list__items {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  flex-grow: 1;
}

.check-list__item-descr {
  margin: 10px 0;
}

.check-list__item label {
  cursor: pointer;
}

.check-list__item ul {
  padding-left: 1.875rem;
  list-style: disc;
}

.check-list__checkbox input {
  display: none;
}

.check-list__checkbox {
  display: flex;
  gap: 0.625rem;
  font-weight: 400;
  font-size: 0.875rem;
  color: #202020;
  align-items: center;
}

.check-list__checkbox .custom-checkbox {
  height: 1.375rem;
}

.check-list__button {
  border-radius: 0.5rem;
  background: #7b4cfa;
  padding: 0.375rem 3.625rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
}

@media (max-width: 1023.98px) {
  .check-list__button {
    padding: 0.375rem 2.375rem;
  }
}

.check-list__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding-top: 1.25rem;
}

.check-list__pagination-item {
  display: flex;
  border-radius: 100%;
  background-color: #7b4cfa;
  width: 14px;
  height: 14px;
}

.check-list__pagination-item.active {
  width: 20px;
  height: 20px;
  background-color: #251d3b;
}

.last-screen {
  background-image: url(/assets/images/last-screen/last-screen-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.8125rem 0.9375rem;
  display: grid;
  grid-template-columns: 70% 30%;
  border-radius: 0.75rem;
  min-height: 31.25rem;
}

.last-screen__text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

@media (max-width: 1200px) {
  .last-screen {
    gap: 0.625rem;
    grid-template-columns: 1fr;
  }
}

.last-screen__title {
  font-weight: 600;
  font-size: clamp(1.5625rem, 1.4196428571rem + 0.7142857143vw, 2.0625rem);
  line-height: 120%;
  color: #202020;
}

.last-screen__descr {
  font-weight: 400;
  font-size: clamp(1rem, 0.9285714286rem + 0.3571428571vw, 1.25rem);
}

.last-screen__list {
  padding-left: 1.875rem;
  list-style-type: disc;
}

.last-screen__right {
  display: flex;
  align-items: end;
}

.last-screen__color-red {
  font-weight: 800;
  color: #f80200;
}

.last-screen__form {
  max-width: 49.6875rem;
  margin: 0;
}

.last-screen__form .main-form__placeholder {
  color: #fff;
}

.last-screen__form .main-form__checkbox {
  color: #000;
}

.last-screen__form input {
  width: 10.9375rem;
}

@media (max-width: 1023.98px) {
  .last-screen__form input {
    width: 100%;
  }
}

.info-change {
  background: linear-gradient(-15deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
  padding-bottom: 12.5rem;
  margin-bottom: -12.5rem;
}

.info-change__title {
  font-weight: 600;
  font-size: clamp(1.875rem, 1.1964285714rem + 3.3928571429vw, 4.25rem);
  line-height: 120%;
  color: #000;
  text-align: center;
  margin: 50px 0;
}

.info-change__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1023.98px) {
  .info-change__row {
    grid-template-columns: 1fr;
  }

  .info-change__row--revers {
    display: flex;
    flex-direction: column-reverse;
  }
}

.info-change__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-change__list {
  padding-left: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

@media (max-width: 1023.98px) {
  .info-change__list {
    gap: 0.625rem;
  }
}

.info-change__list li {
  position: relative;
}

.info-change__list li::before {
  content: "";
  position: absolute;
  display: flex;
  width: 25px;
  height: 25px;
  background-image: url(/assets/icons/tick.png);
  top: 0;
  left: -2.1875rem;
}

.info-change__list--check li::before {
  width: 1.6875rem;
  height: 2.25rem;
  background-image: url(/assets/icons/change-vector.svg);
}

.info-change__card {
  padding: 1.5625rem;
  font-size: clamp(1.1875rem, 1.0625rem + 0.625vw, 1.625rem);
  display: flex;
  flex-direction: column;
}

.info-change__card img {
  width: 100%;
  max-width: 43.75rem;
  margin: 0 auto;
}

.info-change__card--radius {
  box-shadow: 0 4px 23px 0 rgba(0, 0, 0, 0.25);
  background: #fafafa;
  border-radius: 1.25rem;
  height: 100%;
  overflow: hidden;
  gap: 0.625rem;
}

.info-change__card--radius .info-change__card-text {
  margin-left: 2.5rem;
}

.info-change__card--radius div:last-child {
  justify-content: end;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (max-width: 1023.98px) {
  .info-change__card {
    padding: 0.9375rem;
  }
}

.info-change__card--image {
  padding: 0;
}

.info-change__card-title {
  font-weight: 800;
  font-size: clamp(1.6875rem, 1.4553571429rem + 1.1607142857vw, 2.5rem);
  margin: 0 0 30px 0;
}

.info-change__card-subtitle {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.1875rem, 1.0625rem + 0.625vw, 1.625rem);
  margin: 0;
  margin-left: 2.5rem;
}

.info-change__card-subtitle::after {
  position: absolute;
  left: -2.5rem;
  top: 0;
  content: "";
  width: 1.5625rem;
  height: 1.5625rem;
  background-image: url(/assets/icons/tick.png);
  background-size: cover;
}

.info-change__card-text {
  margin: 0;
}

@media (max-width: 1199px) {

  .promo,
  .wrap_map,
  .wrap_bg_gif {
    padding-top: 200px;
  }
}

@media (max-width: 991px) {

  .promo,
  .wrap_map,
  .wrap_bg_gif {
    padding-top: 100px;
  }
}

.breadcrumbs-center {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.breadcrumbs-center__title {
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 140%;
  color: #a081f5;
  margin-bottom: 1.25rem;
  text-align: center;
}

.breadcrumbs-center--bottom {
  padding: 150px 0 50px 0;
}

.breadcrumbs-center {
  background-image: url(/assets/images/person/bg-person.jpg);
  background-size: cover;
}

.header-wrapper--person {
  background-image: url(/assets/images/person/bg-person.jpg);
  background-size: cover;
}

.person-card {
  display: grid;
  grid-template-columns: 41% 41%;
  justify-content: center;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8392857143rem + 0.1785714286vw, 1rem);
  line-height: 140%;
  color: #fff;
  gap: 1.25rem;
  padding-top: 3.125rem;
}

@media (max-width: 1023.98px) {
  .person-card {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .person-card {
    margin-bottom: -12.5rem;
    padding-bottom: 12.5rem;
  }
}

.person-card__image-wrapper {
  margin-bottom: -68px;
}

@media (max-width: 1023.98px) {
  .person-card__image-wrapper {
    max-width: 18.75rem;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .person-card__image-wrapper {
    width: 250px;
    height: 250px;
  }
}

.person-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.6875rem;
  overflow: hidden;
}

.person-card__content {
  max-width: 37.5rem;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .person-card__content {
    max-width: 19.25rem;
  }
}

.person-card__title {
  margin-top: 0;
  font-weight: 400;
  font-size: clamp(1.875rem, 1.6964285714rem + 0.8928571429vw, 2.5rem);
  line-height: 100%;
  color: #00bf80;
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .person-card__title {
    text-align: center;
  }
}

.person-card__small-title {
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0178571429rem + 0.5357142857vw, 1.5rem);
  line-height: 140%;
  color: #00bf80;
  margin: 20px 0;
}

.person-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.person-card__btn-wrapper {
  display: flex;
  gap: 3.375rem;
  align-items: center;
  padding-top: 2.4375rem;
  padding-bottom: 3.9375rem;
  flex-wrap: wrap;
}

@media (max-width: 1023.98px) {
  .person-card__btn-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 1.1875rem;
    padding-bottom: 1.4375rem;
    gap: 0.75rem;
  }
}

.person-card__button {
  margin-left: 0;
}

.education-qualification {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 10.5rem 0 3.625rem 0;
  border-radius: 1.25rem;
  position: relative;
}

@media (max-width: 1023.98px) {
  .education-qualification {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0rem 0 1.75rem 0;
  }
}

@media (max-width: 767.98px) {
  .education-qualification {
    gap: 0;
    background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
    padding-bottom: 2.5rem;
    margin-bottom: -2.5rem;
  }
}

.education-qualification__item {
  padding: 0.8125rem 1.5rem;
  background: #fafafa;
  border-radius: 20px;
}

@media (max-width: 1023.98px) {
  .education-qualification__item {
    max-width: 38.125rem;
  }
}

@media (max-width: 767.98px) {
  .education-qualification__item {
    background-color: transparent;
  }
}

.education-qualification__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
}

.education-qualification__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.education-qualification__text {
  line-height: 140%;
}

.slider {
  overflow: hidden;
}

.slider__top {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
}

@media (max-width: 767.98px) {
  .slider__top {
    gap: 0.3125rem;
  }
}

.slider__controls {
  white-space: nowrap;
}

.slider__button--prev {
  color: #000;
  opacity: 0.5;
}

.slider__button--next {
  color: #000;
}

.slider__list {
  display: flex;
  gap: 1.25rem;
  margin: 30px 0;
}

@media (max-width: 767.98px) {
  .rewards {
    padding: 0 1rem;
    background: #171b2c;
    color: #fff;
    padding-top: 2.5rem;
  }

  .rewards button {
    color: #fff;
  }
}

.rewards__image-wrapper {
  width: 21.25rem;
  height: 21.25rem;
  overflow: hidden;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .rewards__image-wrapper {
    width: 9.0625rem;
    height: 9.0625rem;
  }
}

@media (max-width: 1023.98px) {
  .rewards__slider {
    max-width: 45rem;
  }
}

@media (max-width: 767.98px) {
  .rewards__slider {
    max-width: 19.375rem;
  }
}

.rewards__image {
  width: 100%;
}

.prices_person {
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .prices_person {
    padding: 0 1rem;
    margin-top: -1px;
    padding-bottom: 12.5rem;
    margin-bottom: -12.4375rem;
    background: #171b2c;
    color: #fff;
  }
}

.prices__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
}

@media (max-width: 767.98px) {
  .prices__title {
    margin: 0;
  }
}

.prices__list {
  display: flex;
  flex-direction: column;
}

.prices__item {
  font-weight: 400;
  font-size: clamp(0.8125rem, 0.7589285714rem + 0.2678571429vw, 1rem);
  line-height: 140%;
  padding: 0.625rem;
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 1.3125rem;
}

@media (min-width: 767.98px) {
  .prices__item {
    display: flex;
    justify-content: space-between;
  }

  .prices__item:nth-child(even) {
    background: #fafafa;
  }
}

.reviews {
  background: #fff;
}

@media (max-width: 767.98px) {
  .reviews {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

@media (max-width: 1023.98px) {
  .reviews__slider {
    max-width: 58.75rem;
  }
}

@media (max-width: 767.98px) {
  .reviews__slider {
    max-width: 19.4375rem;
    padding: 0 1rem;
    margin: 0 auto;
  }
}

.reviews__card {
  display: flex;
  gap: 1rem;
  border-radius: 6px;
  padding: 20px;
  width: 460px;
  background: #fafafa;
}

@media (max-width: 767.98px) {
  .reviews__card {
    width: 18.1875rem;
  }
}

.reviews__button {
  color: rgba(123, 76, 250, 0.6);
  white-space: nowrap;
}

.reviews__content {
  display: flex;
  flex-direction: column;
}

.reviews__name {
  margin: 0;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 20px;
}

.reviews__role {
  margin: 0;
  margin-bottom: 16px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}

.reviews__text {
  margin: 0;
  font-size: clamp(0.8125rem, 0.7589285714rem + 0.2678571429vw, 1rem);
}

.qa {
  padding: 30px 0 150px 0;
  background: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 20%, rgba(251, 250, 130, 1) 66%, rgba(90, 233, 180, 1) 100%);
}

.qa__main-block {
  display: grid;
  grid-template-columns: 32% 62%;
  gap: 4.3125rem;
}

@media (max-width: 1023.98px) {
  .qa__main-block {
    display: flex;
    flex-direction: column;
    gap: 1.4375rem;
    padding: 0 1rem;
  }
}

.qa label {
  color: rgba(0, 0, 0, 0.2);
}

.qa__form-block label input {
  color: #000;
}

.qa__slider {
  position: absolute;
  opacity: 0;
  z-index: -1;
  bottom: 0;
}

.qa__slider.active {
  z-index: 1;
  opacity: 1;
  position: relative;
}

.qa .slider__top {
  display: none;
}

@media (max-width: 1023.98px) {
  .qa .slider__top {
    display: flex;
  }
}

.qa .slider__list {
  flex-direction: column;
}

@media (max-width: 1023.98px) {
  .qa .slider__list {
    flex-direction: row;
  }
}

.qa__form-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: #000;
  margin-top: 0;
}

.contacts__form-label {
  margin: 20px 0;
}

.qa .contacts__checkbox {
  color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 767.98px) {
  .qa .contacts__checkbox {
    margin-top: 0;
  }
}

.qa .contacts__checkbox a {
  text-decoration: underline;
}

.qa .contacts__submit {
  width: 100%;
}

.qa__tabs {
  margin-bottom: 3.125rem;
}

@media (max-width: 1023.98px) {
  .qa__tabs {
    margin-bottom: 1.25rem;
  }
}

.qa__tab {
  padding: 0.5625rem 1.25rem;
  border-radius: 6.25rem;
  color: #8c8c8c;
  font-size: clamp(0.6875rem, 0.5982142857rem + 0.4464285714vw, 1rem);
}

@media (max-width: 767.98px) {
  .qa__tab {
    padding: 0.3125rem 0.25rem;
  }
}

.qa__tab.active {
  background: #f7f7f7;
  color: #000;
}

.qa__item {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  max-width: 47.25rem;
}

.qa__item-replay {
  padding-left: 4rem;
}

@media (max-width: 767.98px) {
  .qa__item-replay {
    padding-left: 0;
  }
}

@media (max-width: 1023.98px) {
  .qa__item {
    min-width: 100%;
  }
}

.qa__item-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.qa__replay {
  font-weight: 300;
  font-size: 16px;
  line-height: 1rem;
}

.qa__controls-warpper {
  display: flex;
  align-items: center;
}

.qa__user-info {
  display: flex;
  gap: 0.75rem;
}

.qa__avatar {
  width: 59px;
  height: 59px;
  background-color: #d9d9d9;
  border-radius: 50%;
  overflow: hidden;
}

.qa__avatar-image {
  width: 100%;
  object-fit: cover;
}

.qa__user-name {
  margin-top: 0;
  margin-bottom: 0.3125rem;
  font-weight: 400;
  font-size: 18px;
}

.person-modal {
  display: none;
  color: #323232;
  position: fixed;
  inset: 0;
  z-index: 1111;
  background: linear-gradient(136deg, #fff 0%, #53dba7 71.15%, #0fcc84 100%);
}

.person-modal.active {
  display: block;
}

.person-modal__inner {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  padding: 0 4.3125rem;
  align-items: center;
  height: 100%;
}

@media (max-width: 1023.98px) {
  .person-modal__inner {
    padding: 0 1rem;
    display: flex;
  }
}

.person-modal__close img {
  width: 100%;
  position: relative;
  z-index: 0;
}

.person-modal__close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 2.3125rem;
  right: 2.75rem;
  z-index: 1;
  cursor: pointer;
  background-image: url(/assets/icons/close-modal.svg);
  background-size: 100%;
}

@media (max-width: 1023.98px) {
  .person-modal__close {
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
  }
}

.person-modal__title {
  font-weight: 700;
  font-size: clamp(2.1875rem, 1.6696428571rem + 2.5892857143vw, 4rem);
  line-height: 100%;
}

.person-modal__image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 1023.98px) {
  .person-modal__image {
    display: none;
  }
}

.person-modal .contacts__submit {
  width: 100%;
  border-radius: 10px;
}

.person-modal__image--order {
  background-image: url(/assets/images/person-modal/spec.svg);
}

.person-modal__image--question {
  background-image: url(/assets/images/person-modal/ques.png);
}

.person-modal__image--review {
  background-image: url(/assets/images/person-modal/review.png);
  background-size: 80%;
  background-position: center right;
}

.person-modal label {
  color: rgba(0, 0, 0, 0.4);
}

.person-modal label input {
  color: #000;
}

.person-modal .contacts__checkbox a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: flex-end;
  color: #000;
}

.cookie-banner__inner {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 31px 0 10px 0;
  border-radius: 50px 50px 0 0;
  background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
}

.cookie-banner__inner span {
  max-width: 900px;
}

.cookie-banner__btn {
  background: #7b4cfa;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 18px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-banner a {
  color: #6c63ff;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    padding: 12px;
  }
}

.not-found-main {
  display: flex;
  height: 120vh;
  flex-direction: column;
  background-image: url(/assets/images/404/404-bg.jpg);
  background-size: cover;
  padding-bottom: 50px;
  margin-bottom: -50px;
  background-position: center center;
}

@media (max-width: 1023.98px) {
  .not-found-main {
    height: 100vh;
  }
}

.not-found {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.not-found__inner {
  width: 720px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(60px);
  background: rgba(23, 27, 44, 0.4);
  border-radius: 26px;
  padding: 30px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

@media (max-width: 1023.98px) {
  .not-found__inner {
    padding: 20px;
  }
}

.not-found__title {
  font-weight: 700;
  font-size: clamp(1.5625rem, 1.0982142857rem + 2.3214285714vw, 3.1875rem);
  margin: 0;
  margin-bottom: 10px;
}

.not-found__subtitle {
  font-weight: 600;
  font-size: clamp(1.25rem, 0.8928571429rem + 1.7857142857vw, 2.5rem);
  margin: 0;
  margin-bottom: 10px;
}

.not-found__link {
  display: flex;
  justify-content: center;
  background: #7b4cfa;
  border-radius: 100px;
  padding: 12px 30px;
  width: 100%;
}

.contacts-form-block {
  padding: 10px;
  background: #fff;
  border-radius: 16px;
  margin: 0 auto;
  max-width: 1420px;
}

.contacts-form-block .header__socials {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-form-block__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contacts-form-block__container {
  display: grid;
  grid-template-columns: 38% 59%;
  gap: 32px;
  align-items: stretch;
  box-shadow: 0 0 60px 30px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

@media (max-width: 1023.98px) {
  .contacts-form-block__container {
    display: flex;
    flex-direction: column;
  }
}

.contacts-form-block__info {
  background: #181f2a;
  color: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 1023.98px) {
  .contacts-form-block__info {
    align-items: center;
    text-align: center;
    font-size: 14px;
  }

  .contacts-form-block__info li {
    justify-content: center;
    font-size: 14px;
  }

  .contacts-form-block__info li img {
    display: none;
  }
}

.contacts-form-block__title {
  font-weight: 600;
  font-size: 28px;
  max-width: 353px;
}

.contacts-form-block__contacts {
  margin-bottom: 24px;
}

.contacts-form-block__subtitle {
  color: #6ee7b7;
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 112%;
}

.contacts-form-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contacts-form-block__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.contacts-form-block__list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contacts-form-block__worktime {
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contacts-form-block__download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4f46e5;
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
  font-size: 0.98rem;
  border-radius: 100px;
  padding: 18px 64px;
}

@media (max-width: 1023.98px) {
  .contacts-form-block__download-btn {
    padding: 5px 10px;
  }
}

.contacts-form-block__download-btn:hover {
  background: #6366f1;
}

.contacts-form-block__download-btn img {
  width: 18px;
  height: 18px;
}

.contacts-form-block__form {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: none;
}

.contacts-form-block__form-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #181f2a;
  margin-bottom: 12px;
  text-align: center;
}

.contacts-form-block input,
.contacts-form-block textarea {
  border: none;
  border-bottom: 2px solid #6ee7b7;
  background: transparent;
  padding: 10px 0;
  font-size: 1rem;
  color: #181f2a;
  outline: none;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}

.contacts-form-block input:focus,
.contacts-form-block textarea:focus {
  border-bottom: 2px solid #4f46e5;
}

.contacts-form-block textarea {
  min-height: 60px;
  resize: vertical;
}

.contacts-form-block__submit-btn {
  background: #6c47e5;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.contacts-form-block__submit-btn:hover {
  background: #4f46e5;
}

@media (max-width: 800px) {
  .contacts-form-block__container {
    flex-direction: column;
    gap: 20px;
  }

  .contacts-form-block__info,
  .contacts-form-block__form {
    max-width: 100%;
    min-width: 0;
  }
}

.contacts-map {
  max-width: 1420px;
  margin: 30px auto 150px auto;
  height: 555px;
}

@media (max-width: 1023.98px) {
  .contacts-map {
    display: none;
  }
}

.person-main {
  background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 14.4%, #fff 25.4%);
  padding-bottom: 6.25rem;
  margin-bottom: -6.25rem;
}

.policy-main {
  border-radius: 50px 50px 0 0;
  padding-bottom: 6.25rem;
  margin-bottom: -6.25rem;
  background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
}

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  color: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  z-index: 1000;
  flex-direction: column;
  border-radius: 50px 50px 0 0;
  background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
}

#cookie-consent p {
  margin: 0 0 20px 0;
  flex-grow: 1;
  text-align: center;
  max-width: 1199px;
  padding: 0 20px;
  flex-direction: column;
  display: flex;
}

#cookie-consent a {
  color: #000;
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
}

.cookie-btn {
  background: #7b4cfa;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 18px;
  cursor: pointer;
  font-size: 14px;
}

.call-form-privacy .privacy_policy {
  text-decoration: underline;
}

.header-wrapper--terms {
  background-image: url(/assets/images/terms/terms-bg.gif);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 35px;
  padding-top: 150px;
}

.header-wrapper--blog {
  background-image: url(/assets/images/blog/header-bg.gif);
  background-size: cover;
  background-repeat: no-repeat;
}

.header-wrapper--solutions {
  background-image: url(/assets/images/solutions/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 28px;
}

.header-wrapper--blog-details {
  background-image: url(/assets/images/blog/blog-details.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  min-height: 870px;
}

@media (max-width: 1023.98px) {
  .header-wrapper--blog-details {
    min-height: 525px;
  }
}

.blog-tags--padding {
  padding-top: 6.25rem;
  padding-bottom: 3.375rem;
}

@media (max-width: 1023.98px) {
  .blog-tags--padding {
    padding-top: 3.125rem;
    padding-bottom: 1.6875rem;
  }
}

.blog-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
}

.blog-tags__item {
  display: flex;
  width: fit-content;
  padding: 1.1875rem 1.875rem;
  border-radius: 30px;
  background: linear-gradient(90deg, #7752f6 0%, #20d993 100%);
  font-weight: 400;
  font-size: clamp(1rem, 0.8392857143rem + 0.8035714286vw, 1.5625rem);
  color: #fff;
  line-height: 80%;
  cursor: pointer;
}

@media (max-width: 1023.98px) {
  .blog-tags__item {
    padding: 10px 15px;
  }
}

.blog-tags__item.active {
  background: #3c3c3c;
}

.blog__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
}

@media (max-width: 1023.98px) {
  .blog__list {
    grid-template-columns: 1fr;
  }
}

.blog-card__link-wrapper:hover {
  opacity: 1;
}

.blog-card__title {
  font-weight: 400;
  font-size: clamp(1.25rem, 0.9821428571rem + 1.3392857143vw, 2.1875rem);
  line-height: 125%;
  text-transform: capitalize;
  color: #363636;
}

.blog-card:hover .blog-card__hover-bg {
  opacity: 1;
}

.blog-card:hover .blog-card__hover-text {
  opacity: 1;
}

.blog-card__image-wrapper {
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.blog-card__hover {
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
}

.blog-card__hover-text {
  transition: opacity 0.2s ease;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-weight: 400;
  font-size: clamp(1.25rem, 0.9821428571rem + 1.3392857143vw, 2.1875rem);
  line-height: 86%;
  text-align: right;
  color: #363636;
  max-width: 242px;
  opacity: 0;
}

.blog-card__hover-bg {
  transition: opacity 0.2s ease;
  opacity: 0;
  width: 150%;
  height: 160%;
  background: #fff;
  transform: rotate(-20deg);
}

.blog-card__tag {
  position: absolute;
  top: 48px;
  right: 32px;
  background: linear-gradient(90deg, #7654f4 0%, #1fdc91 100%);
  color: #fff;
  font-weight: 400;
  font-size: clamp(1rem, 0.9285714286rem + 0.3571428571vw, 1.25rem);
  z-index: 9;
  padding: 8px 20px;
  border-radius: 30px;
}

@media (max-width: 1023.98px) {
  .blog-card__tag {
    top: 24px;
    right: 16px;
  }
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: clamp(1rem, 0.9285714286rem + 0.3571428571vw, 1.25rem);
  line-height: 200%;
  text-transform: lowercase;
  color: #757575;
}

.blog-card__meta-time {
  display: flex;
  align-items: center;
  gap: 7px;
}

.blog-card__image {
  padding: 2px;
  width: 100%;
  height: auto;
}

.blog-main {
  margin-bottom: 55px;
}

.blog-main-block {
  margin: 0 auto;
  padding: 32px 0 0 0;
  max-width: 1400px;
  margin-bottom: 55px;
}

@media (max-width: 1023.98px) {
  .blog-main-block {
    padding: 0 16px;
  }
}

.blog-main-block__title {
  text-align: center;
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  margin-bottom: 32px;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .blog-main-block__title {
    font-size: 22px;
    margin-bottom: 18px;
  }
}

.blog-main-block__title-gradient {
  background: linear-gradient(90deg, #7752f6 0%, #20d993 100%);
  color: #fff;
  padding: 0 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: inherit;
  display: inline-block;
}

.blog-main-block__grid {
  display: grid;
  grid-template-columns: 48% 26% 26%;
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .blog-main-block__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 600px) {
  .blog-main-block__grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

.blog-main-block__item {
  background: #232323;
  color: #fff;
  border-radius: 24px;
  padding: 24px 20px 20px 20px;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 400;
  font-size: 31px;
  line-height: 97%;
}

@media (max-width: 900px) {
  .blog-main-block__item {
    font-size: 16px;
    padding: 16px 12px 14px 12px;
    border-radius: 16px;
  }
}

@media (max-width: 600px) {
  .blog-main-block__item {
    font-size: 14px;
    padding: 12px 8px 10px 8px;
    border-radius: 12px;
  }
}

.blog-main-block__item--big {
  background: #ededed;
  color: #232323;
  grid-row: 1 / span 2;
  grid-column: 1/2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 340px;
}

.blog-main-block__item--big .blog-main-block__text {
  font-weight: 400;
  font-size: 36px;
  line-height: 150%;
  text-transform: uppercase;
  color: #363636;
}

@media (max-width: 1023.98px) {
  .blog-main-block__item--big .blog-main-block__text {
    font-size: 23px;
  }
}

@media (max-width: 900px) {
  .blog-main-block__item--big {
    grid-row: 1/2;
    grid-column: 1/3;
    min-height: 220px;
    flex-direction: row;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .blog-main-block__item--big {
    grid-row: auto;
    grid-column: auto;
    min-height: 140px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog-main-block__item--big .blog-main-block__img {
  margin-top: 24px;
  align-self: flex-end;
}

@media (max-width: 900px) {
  .blog-main-block__item--big .blog-main-block__img {
    margin-top: 0;
    align-self: center;
  }
}

@media (max-width: 600px) {
  .blog-main-block__item--big .blog-main-block__img {
    width: 200px;
    margin-bottom: 30px;
  }
}

.blog-main-block__item--big .blog-main-block__img img {
  width: 100%;
  height: auto;
}

.blog-main-block__tag {
  display: flex;
  width: fit-content;
  background: linear-gradient(90deg, #7752f6 0%, #20d993 100%);
  color: #fff;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 500;
  padding: 6px 18px;
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .blog-main-block__tag {
    font-size: 13px;
    padding: 4px 12px;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .blog-main-block__tag {
    font-size: 12px;
    padding: 3px 8px;
    margin-bottom: 15px;
  }
}

.blog-main-block__text {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .blog-main-block__text {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .blog-main-block__text {
    margin-bottom: 6px;
  }
}

.blog-main-block__arrow {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 28px;
  color: #bfaaf8;
  text-decoration: none;
}

@media (max-width: 900px) {
  .blog-main-block__arrow {
    right: 10px;
    bottom: 10px;
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .blog-main-block__arrow {
    right: 6px;
    bottom: 6px;
    font-size: 18px;
  }
}

.blog-main-block__all {
  display: flex;
  width: fit-content;
  margin: 32px auto 0 auto;
  background: #7b4cfa;
  color: #fff;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 28px;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  margin: 30px auto;
}

@media (max-width: 600px) {
  .blog-main-block__all {
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 10px;
  }
}

.promo-blog {
  padding: 47px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.promo-blog__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 118%;
  letter-spacing: 0.02em;
  color: #3c3c3c;
  margin: 19px 0 30px 0;
}

@media (max-width: 1023.98px) {
  .promo-blog__title {
    font-size: 30px;
  }
}

.promo-blog__text {
  max-width: 1020px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 200%;
  color: #757575;
  padding-top: 20px;
  gap: 30px;
}

@media (max-width: 1023.98px) {
  .article-meta {
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
  }
}

.article-meta__time {
  align-items: center;
  display: flex;
  gap: 7px;
}

.article-meta__date {
  flex-grow: 1;
  text-align: end;
}

.integrate-bg {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.article {
  color: #3c3c3c;
  font-weight: 400;
  font-size: 27px;
  line-height: 170%;
}

@media (max-width: 1023.98px) {
  .article {
    font-size: 18px;
    line-height: normal;
  }
}

.article__lead {
  font-weight: 500;
  font-size: 27px;
  line-height: 170%;
  margin-bottom: 20px;
}

@media (max-width: 1023.98px) {
  .article__lead {
    font-size: 20px;
    line-height: normal;
  }
}

.article__subtitle-h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 170%;
  margin: 10px 0;
}

@media (max-width: 1023.98px) {
  .article__subtitle-h2 {
    font-size: 38px;
    line-height: normal;
  }
}

.article__subtitle-h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 170%;
  margin-top: 15px;
  margin-bottom: 25px;
}

@media (max-width: 1023.98px) {
  .article__subtitle-h3 {
    font-size: 35px;
    line-height: normal;
  }
}

.article__list {
  list-style-type: disc;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.article-transform {
  border-radius: 100px 100px 0 0;
  color: #fff;
  background: #3c3c3c;
  overflow: hidden;
  padding-bottom: 175px;
  margin-bottom: -150px;
  padding-top: 45px;
  margin-top: 30px;
}

@media (max-width: 1023.98px) {
  .article-transform {
    border-radius: 50px 50px 0 0;
  }
}

.article-transform__title {
  font-weight: 600;
  font-size: 50px;
  line-height: 120%;
}

@media (max-width: 1023.98px) {
  .article-transform__title {
    font-size: 30px;
  }
}

.article-transform__title--accent {
  color: #3c3c3c;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}

@media (max-width: 1023.98px) {
  .article-transform__title--accent {
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
  }
}

.article-transform__image {
  margin-right: 40px;
  float: left;
}

@media (max-width: 1023.98px) {
  .article-transform__image {
    margin-top: 50px;
    float: none;
    width: 100%;
  }
}

.article-trends {
  border-radius: 100px 100px 0;
  margin-bottom: -150px;
  padding-bottom: 200px;
  background: #fff;
  overflow: hidden;
  background: linear-gradient(-30deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
}

@media (max-width: 1023.98px) {
  .article-trends {
    border-radius: 50px 0 50px 0;
  }
}

.article-trends__list {
  list-style: disc;
  padding-left: 30px;
}

.article-trends__title {
  font-weight: 600;
  font-size: 50px;
  line-height: 120%;
  margin-top: 15px;
  margin-bottom: 20px;
}

@media (max-width: 1023.98px) {
  .article-trends__title {
    font-size: 30px;
  }
}

.article-trends__table {
  max-width: 1065px;
  font-weight: 400;
  font-size: 27px;
  line-height: 100%;
  gap: 10px;
  margin-bottom: 35px;
}

.article-trends__table-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 1023.98px) {
  .article-trends__table-list {
    display: flex;
    flex-direction: column;
  }
}

.article-trends__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 1023.98px) {
  .article-trends__row {
    grid-template-columns: 1fr;
  }
}

.article-trends__cell {
  border-radius: 18px;
  background: rgba(217, 217, 217, 0.29);
  padding: 20px;
  display: flex;
  align-items: center;
}

.article-trends__cell--head {
  font-weight: 700;
  background: linear-gradient(90deg, rgba(33, 217, 147, 0.29) 0%, rgba(114, 90, 240, 0.29) 100%);
}

.cell2 {
  grid-column-start: 1;
  grid-row-start: 2;
}

.cell3 {
  grid-column-start: 1;
  grid-row-start: 3;
}

.cell4 {
  grid-column-start: 1;
  grid-row-start: 4;
}

.cell5 {
  grid-column-start: 2;
  grid-row-start: 1;
}

.cell6 {
  grid-column-start: 2;
  grid-row-start: 2;
}

.cell7 {
  grid-column-start: 2;
  grid-row-start: 3;
}

.star {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("/assets/images/blog/star-grey.png") center/cover no-repeat;
  cursor: pointer;
  transition: background 0.2s;
}

.star.active,
.star:hover,
.star.hovered {
  background: url("/assets/images/blog/star-yellow.png") center/cover no-repeat;
}

.feedback-block {
  background: #00c8ff;
  border-radius: 54px;
  width: 100%;
  padding: 20px;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.feedback-block--padding-bottom-150 {
  margin-bottom: 150px;
}

@media (max-width: 1023.98px) {
  .feedback-block {
    border-radius: 34px;
    padding-top: 30px;
    flex-direction: column;
  }
}

.feedback-block__form-inner label {
  position: relative;
}

.feedback-block__form-inner input {
  background: #757575;
  height: 60px;
  width: 100%;
  padding-left: 20px;
  color: #fff;
}

.feedback-block__placeholder {
  position: absolute;
  top: 23px;
  left: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}

.feedback-block__mini-text {
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
  width: 100%;
  margin-top: 15px;
}

.feedback-block__submit {
  margin: 0;
  margin-top: 40px;
  border-radius: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}

@media (max-width: 1023.98px) {
  .feedback-block__submit {
    display: block;
    margin: 30px auto;
  }
}

.feedback-block__checkbox {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}

.feedback-block__form-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

.feedback-block__form-inner .input1 {
  grid-column: span 2 / span 2;
}

.feedback-block__form-inner .input2 {
  grid-row-start: 2;
}

.feedback-block__form-inner .input3 {
  grid-row-start: 2;
}

.feedback-block__form-inner .input4 {
  grid-column: span 2 / span 2;
}

.feedback-block__text {
  max-width: 481px;
  font-weight: 600;
  font-size: 35px;
  line-height: 120%;
  color: #fff;
}

@media (max-width: 1023.98px) {
  .feedback-block__text {
    font-size: 20px;
  }
}

.feedback-block__form {
  max-width: 705px;
}

.hero-search {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 51px;
  text-align: center;
  color: #fff;
  padding-bottom: 97px;
}

@media (max-width: 1023.98px) {
  .hero-search {
    gap: 30px;
    font-size: 60px;
  }
}

.hero-search__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 118%;
}

@media (max-width: 1023.98px) {
  .hero-search__title {
    font-size: 35px;
  }
}

.hero-search__label {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  max-width: 878px;
  margin: 0 auto;
  color: #88888c;
  font-weight: 400;
  font-size: 27px;
  line-height: 81%;
  cursor: pointer;
}

@media (max-width: 1023.98px) {
  .hero-search__label {
    font-size: 20px;
    gap: 10px;
  }
}

.hero-search__input {
  font-size: 27px;
  color: #88888c;
  flex-grow: 1;
}

@media (max-width: 1023.98px) {
  .hero-search__input {
    font-size: 20px;
  }
}

.hero-search__reset {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1023.98px) {
  .hero-search__reset {
    display: none;
  }
}

.hero-search__input::placeholder {
  font-size: 27px;
}

@media (max-width: 1023.98px) {
  .hero-search__input::placeholder {
    font-size: 20px;
  }
}

.hero-search__subtitle {
  font-weight: 500;
  font-size: 27px;
  line-height: 170%;
}

@media (max-width: 1023.98px) {
  .hero-search__subtitle {
    font-size: 21px;
  }
}

.toc {
  margin-bottom: 40px;
}

.toc__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 118%;
  letter-spacing: 0.02em;
  color: #3c3c3c;
  margin-top: 15px;
  margin-bottom: 20px;
}

@media (max-width: 1023.98px) {
  .toc__title {
    font-size: 40px;
  }
}

.toc__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 900px) {
  .toc__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .toc__list {
    grid-template-columns: 1fr;
  }
}

.toc__list li {
  position: relative;
  padding-left: 35px;
  font-size: 27px;
  color: #444;
  line-height: 1.5;
}

.toc__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 25px;
  height: 25px;
  background: url("/assets/images/terms/checked.png") no-repeat center/contain;
}

.term {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 32px 40px 32px 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(60, 60, 60, 0.04);
  transition: box-shadow 0.2s;
  max-width: 100%;
}

.term.important {
  background: #f9f9a3;
}

@media (max-width: 600px) {
  .term {
    padding: 20px 12px;
  }
}

.term__header {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.term__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  color: #3c3c3c;
  flex: 1;
}

@media (max-width: 600px) {
  .term__title {
    font-size: 22px;
  }
}

.term__icon {
  width: 32px;
  height: 32px;
  margin-left: 16px;
  background: url("/assets/icons/terms-arrow.svg") no-repeat center/contain;
  transition: transform 0.3s;
}

.term__icon.active {
  transform: rotate(180deg);
}

.term__body {
  margin-top: 16px;
  font-size: 20px;
  color: #444;
  line-height: 1.5;
  display: block;
  transition: max-height 0.3s, opacity 0.3s;
  max-height: 1000px;
  opacity: 1;
  overflow: hidden;
}

.term__body.collapsed {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding: 0;
}

@media (max-width: 600px) {
  .term__body {
    font-size: 16px;
  }
}

.solutions-hero__title {
  max-width: 1017px;
  margin: 0 auto;
  padding: 542px 0 50px 0;
  font-weight: 700;
  font-size: 60px;
  line-height: 118%;
  letter-spacing: 0.02em;
  color: #fff;
}

@media (max-width: 1023.98px) {
  .solutions-hero__title {
    padding: 200px 0 25px 0;
    font-size: 35px;
  }
}

.solutions-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 1023.98px) {
  .solutions-intro {
    display: flex;
    flex-direction: column-reverse;
  }
}

.solutions-intro__content {
  font-size: 27px;
  line-height: 170%;
  color: #3c3c3c;
}

@media (max-width: 1023.98px) {
  .solutions-intro__content {
    font-size: 20px;
  }
}

.main-solutions {
  font-weight: 400;
  font-size: 27px;
  line-height: 170%;
  color: #3c3c3c;
}

@media (max-width: 1023.98px) {
  .main-solutions {
    font-size: 20px;
  }
}

.main-solutions__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  margin-bottom: 15px;
  margin-top: 15px;
}

@media (max-width: 1023.98px) {
  .main-solutions__title {
    font-size: 35px;
  }
}

.text-center {
  text-align: center;
}

.solutions-note {
  background: linear-gradient(90deg, rgba(33, 217, 147, 0.29) 0%, rgba(114, 90, 240, 0.29) 100%);
  border-radius: 56px;
  padding: 20px;
  margin-bottom: 15px;
  margin-top: 15px;
  padding-right: 48px;
}

.solutions-note--red {
  background: linear-gradient(90deg, rgba(244, 120, 119, 0.29) 0%, rgba(36, 33, 33, 0.29) 100%);
}

@media (max-width: 1023.98px) {
  .solutions-note {
    padding: 20px;
    padding-right: 30px;
  }
}

.solutions-types {
  background: #3c3c3c;
  color: #fff;
  font-size: 27px;
  line-height: 170%;
  border-radius: 100px 100px 0 0;
  padding: 66px 0 78px 0;
}

@media (max-width: 1023.98px) {
  .solutions-types {
    border-radius: 50px 50px 0 0;
    padding: 33px 0 35px 0;
    font-size: 20px;
  }
}

.solutions-types__desc {
  font-size: 27px;
  line-height: 170%;
}

@media (max-width: 1023.98px) {
  .solutions-types__desc {
    font-size: 20px;
  }
}

.solutions-types__table {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  grid-template-rows: repeat(4, 1fr);
  gap: 13px;
}

@media (max-width: 1023.98px) {
  .solutions-types__table {
    display: flex;
    flex-direction: column;
  }
}

.solutions-types__cell {
  background: rgba(255, 239, 239, 0.29);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 21px;
}

.solutions-types__cell--head {
  background: linear-gradient(90deg, rgba(33, 217, 147, 0.29) 0%, rgba(114, 90, 240, 0.29) 100%);
  font-weight: 700;
}

.solutions-types__cell--2 {
  grid-column-start: 1;
  grid-row-start: 2;
}

.solutions-types__cell--3 {
  grid-column-start: 1;
  grid-row-start: 3;
}

.solutions-types__cell--4 {
  grid-column-start: 1;
  grid-row-start: 4;
}

.solutions-types__cell--5 {
  grid-column-start: 2;
  grid-row-start: 1;
}

.solutions-types__cell--6 {
  grid-column-start: 2;
  grid-row-start: 2;
}

.solutions-types__cell--7 {
  grid-column-start: 2;
  grid-row-start: 3;
}

.solutions-types__cell--8 {
  grid-column-start: 2;
  grid-row-start: 4;
}

.solutions-types__cell--9 {
  grid-column-start: 3;
  grid-row-start: 1;
}

.solutions-types__cell--10 {
  grid-column-start: 3;
  grid-row-start: 2;
}

.solutions-types__cell--11 {
  grid-column-start: 3;
  grid-row-start: 3;
}

.solutions-template-request {
  background: linear-gradient(136deg, #fff 0%, #0fcc84 100%);
  color: #323232;
  padding-bottom: 30px;
}

.solutions-template-request__title {
  font-weight: 700;
  font-size: 82px;
  line-height: 100%;
  margin-bottom: 0;
  margin-top: 98px;
}

@media (max-width: 1023.98px) {
  .solutions-template-request__title {
    font-size: 40px;
    margin-top: 45px;
  }
}

.solutions-template-request__subtitle {
  font-weight: 500;
  font-size: 39px;
  line-height: 100%;
  margin-top: 20px;
}

@media (max-width: 1023.98px) {
  .solutions-template-request__subtitle {
    font-size: 19px;
  }
}

.solutions-template-request__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 117px;
}

@media (max-width: 1023.98px) {
  .solutions-template-request__inner {
    display: flex;
    padding-bottom: 20px;
  }
}

@media (max-width: 1023.98px) {
  .solutions-template-request__images {
    display: none;
  }
}

.solutions-template-request__form label input,
.solutions-template-request__form label {
  color: rgba(0, 0, 0, 0.4);
}

.solutions-template-request__form .main-form__placeholder--date {
  display: flex;
  justify-content: space-between;
  width: 95%;
}

.contacts__submit--w100 {
  width: 100%;
}

.solutions-main {
  color: #3c3c3c;
}

.good-choice {
  font-size: 27px;
  line-height: 170%;
  padding-bottom: 27px;
}

@media (max-width: 1023.98px) {
  .good-choice {
    font-size: 20px;
  }
}

.list-disc {
  list-style: disc;
  padding-left: 30px;
}

.feature {
  position: relative;
  padding-left: 120px;
  margin-top: 25px;
}

.good-choice__decr-text {
  margin-top: 47px;
  margin-bottom: 47px;
}

@media (max-width: 1023.98px) {
  .feature {
    padding-left: 0;
    padding-top: 110px;
  }

  .good-choice__decr-text {
    margin-top: 27px;
    margin-bottom: 27px;
  }
}

.feature__title {
  font-weight: 900;
  margin: 0;
  color: #32b6ee;
}

.feature--1::after {
  background-image: url(/assets/images/solutions/feature1.png);
}

.feature--2::after {
  background-image: url(/assets/images/solutions/feature2.png);
}

.feature--3::after {
  background-image: url(/assets/images/solutions/feature3.png);
}

.feature--4::after {
  background-image: url(/assets/images/solutions/feature4.png);
}

.feature--5::after {
  background-image: url(/assets/images/solutions/feature5.png);
}

.feature::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 98px;
  height: 98px;
  background-repeat: no-repeat;
}

@media (max-width: 1023.98px) {
  .feature::after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.form-block {
  color: #323232;
  background: linear-gradient(136deg, #fff 0%, #0fcc84 100%);
  padding: 0 16px;
  padding-bottom: 30px;
  padding-top: 34px;
  padding-bottom: 180px;
  margin-bottom: -150px;
}

.form-block__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  text-align: center;
}

@media (max-width: 1023.98px) {
  .form-block__title {
    font-size: 30px;
  }
}

.form-block__subtitle {
  text-align: center;
  font-weight: 500;
  font-size: 39px;
  line-height: 100%;
}

@media (max-width: 1023.98px) {
  .form-block__subtitle {
    font-size: 19px;
  }
}

.form-block__form-wrapper {
  max-width: 459px;
  margin: 0 auto;
}

.pros-cons {
  background: #3c3c3c;
  font-size: 27px;
  line-height: 170%;
  padding: 63px 0 23px 0;
  border-radius: 100px 100px 0 0;
  background-image: url(/assets/images/solutions/pos-cos-bg.png);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  padding-bottom: 178px;
  margin-bottom: -150px;
  color: #fff;
}

@media (max-width: 1023.98px) {
  .pros-cons {
    border-radius: 50px 50px 0 0;
    font-size: 20px;
    background-image: none;
  }
}

.pros-cons__title {
  color: #fff;
  font-size: 55px;
  margin-bottom: 25px;
}

@media (max-width: 1023.98px) {
  .pros-cons__title {
    font-size: 25px;
  }
}

.pros-cons__list {
  max-width: 1000px;
}

.pros-cons__sublist {
  list-style: disc;
  padding-left: 30px;
}

.border-radius-block {
  border-radius: 100px 100px 0 0;
  padding-top: 35px;
}

.border-radius-360 {
  border-radius: 100px 100px 100px 100px;
  position: relative;
  padding-bottom: 44px;
  z-index: 10;
}

.border-radius-block--white {
  background-color: #fff;
}

.border-radius-block--dark {
  background: #3c3c3c;
  color: #fff;
}

.border-radius-block--green {
  background: linear-gradient(-30deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
}

@media (max-width: 1023.98px) {
  .border-radius-block {
    border-radius: 50px 50px 0 0;
  }
}

.article-title-h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  margin-bottom: 20px;
  margin-top: 15px;
}

@media (max-width: 1023.98px) {
  .article-title-h2 {
    font-size: 31px;
  }
}

.article-title-h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  margin-top: 15px;
  margin-bottom: 25px;
}

@media (max-width: 1023.98px) {
  .article-title-h3 {
    font-size: 24px;
  }
}

.fz-27 {
  font-size: 27px;
  line-height: 170%;
  color: #3c3c3c;
}

.fz-27--color-white {
  color: #fff;
}

@media (max-width: 1023.98px) {
  .fz-27 {
    font-size: 20px;
  }
}

.bottom-overlay {
  padding-bottom: 165px;
  margin-bottom: -150px;
}

.text-yellow {
  color: #fff200;
}

.template-rights__images {
  float: right;
  margin-left: 30px;
}

@media (max-width: 1023.98px) {
  .template-rights__images {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

.text-green-gradient {
  background: linear-gradient(90deg, #7a4ff8 0%, #20da92 0.01%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solutions-difference {
  padding: 20px 0;
  background: linear-gradient(-30deg, #5ae9b4 0%, #fffa7f 3.4%, #fff 28.4%);
}

.solutions-difference__table {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  grid-template-rows: repeat(6, 1fr);
  gap: 13px;
  font-weight: 400;
  font-size: 27px;
  line-height: 100%;
  color: #3c3c3c;
  margin-top: 40px;
}

@media (max-width: 1023.98px) {
  .solutions-difference__table {
    font-size: 20px;
    display: flex;
    flex-direction: column;
  }
}

.solutions-difference__cell {
  border-radius: 18px;
  background: #ededed;
  padding: 13px;
  display: flex;
  align-items: center;
}

.solutions-difference__cell--2 {
  grid-column-start: 1;
  grid-row-start: 2;
}

.solutions-difference__cell--3 {
  grid-column-start: 1;
  grid-row-start: 3;
}

.solutions-difference__cell--4 {
  grid-column-start: 1;
  grid-row-start: 4;
}

.solutions-difference__cell--5 {
  grid-column-start: 1;
  grid-row-start: 5;
}

.solutions-difference__cell--6 {
  grid-column-start: 1;
  grid-row-start: 6;
}

.solutions-difference__cell--7 {
  grid-column-start: 2;
  grid-row-start: 1;
}

.solutions-difference__cell--8 {
  grid-column-start: 2;
  grid-row-start: 2;
}

.solutions-difference__cell--9 {
  grid-column-start: 2;
  grid-row-start: 3;
}

.solutions-difference__cell--10 {
  grid-column-start: 2;
  grid-row-start: 4;
}

.solutions-difference__cell--11 {
  grid-column-start: 2;
  grid-row-start: 5;
}

.solutions-difference__cell--12 {
  grid-column-start: 2;
  grid-row-start: 6;
}

.solutions-difference__cell--13 {
  grid-column-start: 3;
  grid-row-start: 1;
}

.solutions-difference__cell--14 {
  grid-column-start: 3;
  grid-row-start: 2;
}

.solutions-difference__cell--15 {
  grid-column-start: 3;
  grid-row-start: 3;
}

.solutions-difference__cell--16 {
  grid-column-start: 3;
  grid-row-start: 4;
}

.solutions-difference__cell--17 {
  grid-column-start: 3;
  grid-row-start: 5;
}

.solutions-difference__cell--head {
  font-weight: 700;
  justify-content: center;
  background: linear-gradient(90deg, rgba(33, 217, 147, 0.29) 0%, rgba(114, 90, 240, 0.29) 100%);
  max-height: 120px;
  align-self: end;
  padding: 20px 10px;
  min-height: 85px;
  font-size: 23px;
}

.cta-btn {
  box-shadow: 3px 8px 0 0 #000, 3px 7px 0 0 #000, 3px 6px 0 0 #000, 2px 5px 0 0 #000, 2px 4px 0 0 #000, 1px 3px 0 0 #000, 1px 2px 0 0 #000, 0px 1px 0 0 #000;
  background: #7b4cfa;
  padding: 6px 13px;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
  width: fit-content;
  justify-self: center;
}

@media (max-width: 1023.98px) {
  .cta-btn {
    font-size: 20px;
  }
}

.person-main {
  background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 14.4%, #fff 25.4%);
  padding-bottom: 6.25rem;
  margin-bottom: -6.25rem;
}

.policy-main {
  border-radius: 50px 50px 0 0;
  padding-bottom: 6.25rem;
  margin-bottom: -6.25rem;
  background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
}

.green-text {
  font-weight: 800;
  color: #00bf80;
}

.terms-main {
  padding-bottom: 150px;
}

.help-block {
  border-radius: 32px;
  background: #010205;
  background-image: url(/assets/images/new-main/right-block-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 43px;
}

@media (max-width: 1023.98px) {
  .help-block {
    padding: 16px;
    background-position: bottom right;
  }
}

.help-block__title {
  color: var(--main-green);
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  margin-bottom: 30px;
}

.help-block__text {
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 141%;
}

.attract-block {
  border-radius: 32px;
  background: #010205;
  background-image: url(/assets/images/new-main/right-block-bg-2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  color: #fff;
  padding: 43px;
}

@media (max-width: 1023.98px) {
  .attract-block {
    padding: 16px;
    background-position: top left;
  }
}

.attract-block__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 126%;
  letter-spacing: -0.03em;
  color: var(--main-green);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 32px;
}

@media (max-width: 1023.98px) {
  .attract-block__title {
    font-size: 25px;
  }
}

.attract-block__title-line {
  height: 1px;
  width: 67px;
  display: flex;
  background-color: #fff;
}

.attract-block__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 20px;
}

.attract-block__text:last-child {
  max-width: 303px;
}

.cta-section__inner {
  padding: 37px 52px;
  background-color: var(--main-green);
  border-radius: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1023.98px) {
  .cta-section__inner {
    flex-direction: column;
    padding: 15px 16px;
    gap: 30px;
  }
}

.cta-section__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
}

@media (max-width: 1023.98px) {
  .cta-section__title {
    font-size: 25px;
  }
}

button.cta-section__button {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  display: flex;
  padding: 15px;
  color: #fff;
  flex-wrap: nowrap;
  border-radius: 70px;
  background-color: var(--main-purple);
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: fit-content;
  width: 100%;
  max-width: fit-content;
}

@media (max-width: 1023.98px) {
  button.cta-section__button {
    width: 100%;
    font-size: 14px;
  }
}

.statistics {
  padding: 38px 0;
  background-color: var(--main-green);
  color: #fff;
}

.statistics__list {
  display: flex;
  max-width: 914px;
  margin: 0 auto;
}

@media (max-width: 1023.98px) {
  .statistics__list {
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
  }
}

.statistics__item {
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 337px;
  padding: 0 40px;
  border-right: 2px solid #fff;
  max-height: 40px;
}

@media (max-width: 1023.98px) {
  .statistics__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    border: none;
    max-width: fit-content;
  }
}

.statistics__item:last-child {
  border-right: none;
}

.statistics__value {
  font-weight: 700;
  font-size: 42px;
  line-height: 148%;
  margin: 0;
}

.statistics__text {
  font-weight: 400;
  font-size: 17px;
  line-height: 118%;
  hyphens: auto;
  margin: 0;
}

.calculator-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px;
  padding: 10px 0 33px 0;
}

@media (max-width: 1023.98px) {
  .calculator-section__container {
    display: flex;
    flex-direction: column;
  }
}

.calculator-section .calculator {
  grid-row: span 2 / span 2;
  background: rgba(128, 196, 159, 0.1);
  border-radius: 32px;
  padding: 56px 25px 5px 25px;
}

.calculator-section .calculator__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 75%;
  margin-bottom: 20px;
}

.calculator-section .calculator__description {
  margin-bottom: 26px;
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
}

.calculator-section .calculator__subtitle {
  font-weight: 700;
  font-size: 17px;
  line-height: 141%;
  margin-bottom: 20px;
}

.calculator-section .calculator__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 17px;
}

.calculator-section .calculator__checkbox {
  display: none;
}

.calculator-section .calculator__checkbox:checked~.calculator__label .calculator__custom-checkbox {
  border-color: #775da6;
}

.calculator-section .calculator__checkbox:checked~.calculator__label .calculator__custom-checkbox .calculator__custom-checkbox-inner {
  opacity: 1;
}

.calculator-section .calculator__label {
  display: flex;
  gap: 14px;
  align-items: center;
  cursor: pointer;
}

.calculator-section .calculator__custom-checkbox {
  display: flex;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  border: 2px solid #898989;
  justify-content: center;
  align-items: center;
  transition: border-color 0.2s ease;
}

.calculator-section .calculator__custom-checkbox-inner {
  display: flex;
  width: 10px;
  height: 10px;
  background-color: #775da6;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.calculator-section .calculator__approximate-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

@media (max-width: 1023.98px) {
  .calculator-section .calculator__approximate-price {
    flex-direction: column;
  }
}

.calculator-section .calculator__approximate-text {
  font-weight: 600;
  font-size: 21px;
  line-height: 114%;
}

.calculator-section .calculator__approximate-button {
  padding: 10px;
  background: #00bf80;
  border-radius: 33px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  line-height: 114%;
}

.calculator-section .calculator__note {
  font-weight: 400;
  font-size: 11px;
  line-height: 218%;
}

.calculator-section .calculator__submit {
  display: flex;
  width: 100%;
  padding: 10px 0;
  background-color: var(--main-purple);
  border-radius: 33px;
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 32px;
}

.banner {
  color: #fff;
  display: grid;
  grid-template-columns: 54% 45%;
  gap: 40px;
  padding: 50px 0 0 0;
}

@media (max-width: 1023.98px) {
  .banner {
    display: flex;
    flex-direction: column;
  }
}

.banner-wrapper {
  margin-top: 50px;
}

.banner__subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.banner__title {
  font-weight: 800;
  font-size: 60px;
  line-height: 130%;
}

@media (max-width: 1023.98px) {
  .banner__title {
    font-size: 40px;
  }
}

.banner__left-side {
  background-image: url(/assets/images/new-main/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1023.98px) {
  .banner__left-side {
    background-image: none;
  }
}

.banner__right-side {
  margin-bottom: 50px;
}

@media (max-width: 1023.98px) {
  .banner__right-side {
    margin-bottom: 20px;
  }
}

.banner__btns-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-bottom: 47px;
}

.banner__btn {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 10px 20px;
  backdrop-filter: blur(80px);
  background: rgba(9, 119, 105, 0.17);
  border-radius: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

@media (max-width: 1023.98px) {
  .banner__btn {
    padding: 10px 10px 5px 10px;
  }
}

.banner__btn-image {
  max-width: 149px;
}

.banner__btn-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  max-width: 190px;
  text-align: center;
}

@media (max-width: 1023.98px) {
  .banner__btn-title {
    font-size: 16px;
  }
}

.banner__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-weight: 500;
  font-size: 22px;
  line-height: 95%;
  margin-bottom: 24px;
}

@media (max-width: 1023.98px) {
  .banner__list {
    font-size: 18px;
  }
}

.banner__list-item {
  display: grid;
  grid-template-columns: 135px 1fr;
  align-items: center;
}

@media (max-width: 1023.98px) {
  .banner__list-item {
    grid-template-columns: 120px 1fr;
  }
}

.banner__list-value {
  font-weight: 500;
  font-size: 40px;
}

.steps {
  padding: 60px 0 50px 0;
  margin-bottom: -40px;
  background: linear-gradient(-30deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
}

.steps__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 111%;
  text-align: center;
  margin-bottom: 75px;
}

@media (max-width: 1023.98px) {
  .steps__title {
    font-size: 45px;
  }
}

.steps__list {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 1023.98px) {
  .steps__list {
    justify-content: center;
  }
}

.steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  gap: 15px;
  max-width: 224px;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
  padding-top: 64px;
  padding-bottom: 126px;
  z-index: 1;
}

.steps__item-inner {
  position: absolute;
  inset: 0;
  width: calc(100% + 16px);
  height: 100%;
  background-image: url(/assets/images/new-main/item-bg.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: -1;
}

.steps__item::after {
  content: "";
  position: absolute;
  display: flex;
  padding-top: 10px;
  justify-content: center;
  width: 143px;
  height: 110px;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  left: -17px;
  top: -34px;
}

.steps__item:nth-child(1)::after {
  content: "01";
  background-image: url(/assets/images/new-main/tag-1.svg);
}

.steps__item:nth-child(2)::after {
  content: "02";
  background-image: url(/assets/images/new-main/tag-2.svg);
}

.steps__item:nth-child(3)::after {
  content: "03";
  background-image: url(/assets/images/new-main/tag-3.svg);
}

.steps__item:nth-child(4)::after {
  content: "04";
  background-image: url(/assets/images/new-main/tag-4.svg);
}

.steps__item:nth-child(5)::after {
  content: "05";
  background-image: url(/assets/images/new-main/tag-5.svg);
}

.steps__item:hover {
  transform: translateY(-20px);
}

.projects {
  color: #fff;
}

.projects__title {
  font-weight: 600;
  font-size: 60px;
  line-height: 130%;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 53px;
}

.projects__tabs-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 47px;
}

@media (max-width: 1023.98px) {
  .projects__tabs-wrapper {
    gap: 10px;
  }
}

.projects__tab {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 13px 62px;
  cursor: pointer;
}

.projects__tab.active {
  background: var(--main-purple);
  border-color: var(--main-purple);
}

.projects__list {
  display: flex;
  gap: 45px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 100px;
  position: relative;
}

.projects__item {
  display: flex;
  position: relative;
  border: 10px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(134px);
  overflow: hidden;
}

.projects__image {
  width: 100%;
  height: 100%;
}

.projects__tag {
  position: absolute;
  z-index: 11;
  border-radius: 50px;
  background: rgba(123, 76, 250, 0.6);
  bottom: 13px;
  left: 13px;
  padding: 3px 15px;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
}

.projects__tag-inner {
  display: flex;
  width: 54px;
  height: 2px;
  background: #fff;
}

.projects__tag-date {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  line-height: 126%;
  gap: 13px;
  margin-right: 25px;
}

.projects__controls {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.projects-wrapper {
  padding: 27px 0 50px 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 38px;
  font-weight: 600;
  font-size: 16px;
  line-height: 180%;
}

.slider-controls--green {
  color: var(--main-green);
}

.slider-controls--green .slider-controls__button {
  border: 1px solid var(--main-green);
}

.slider-controls--green .slider-controls__button--next {
  background: var(--main-green);
}

.slider-controls__button {
  border: 1px solid #fff;
  border-radius: 70px;
  padding: 16px 32px;
}

.slider-controls__button--next {
  background: #fff;
}

.slider-controls__current {
  text-decoration: underline;
}

.reviews-main {
  padding: 21px 0 40px 0;
}

.reviews-main__title {
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 1023.98px) {
  .reviews-main__title {
    font-size: 40px;
  }
}

.reviews-main__block {
  position: relative;
  background-color: #fafafa;
  background-image: url(/assets/images/new-main/review-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px;
  padding-top: 100px;
  font-weight: 400;
  font-size: 26px;
  line-height: 130%;
}

.reviews-main__controls {
  position: absolute;
  display: flex;
  width: fit-content;
  right: 40px;
  bottom: 55px;
}

@media (max-width: 1023.98px) {
  .reviews-main__block {
    font-size: 18px;
    padding: 16px;
  }
}

.reviews-main__text {
  margin-bottom: 40px;
}

@media (max-width: 1023.98px) {
  .reviews-main__text {
    margin-bottom: 20px;
  }
}

.reviews-main__inner {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 17px;
}

@media (max-width: 1023.98px) {
  .reviews-main__inner {
    display: flex;
    flex-direction: column;
  }
}

.reviews-main__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1023.98px) {
  .reviews-main__info {
    gap: 20px;
    flex-direction: column;
  }
}

.reviews-main__author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews-main__name {
  font-weight: 500;
  font-size: 22px;
  line-height: 123%;
  text-transform: capitalize;
  color: var(--main-green);
}

.reviews-main__company {
  font-weight: 400;
  font-size: 20px;
  line-height: 165%;
  text-transform: capitalize;
  color: #828282;
}

.reviews-main__descr {
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
  margin-bottom: 10px;
}

.reviews-main .main-form__checkbox {
  color: #000;
}

.reviews-main .main-form__submit {
  width: 100%;
  border-radius: 32px;
}

.team-wrapper {
  overflow: hidden;
}

.team {
  color: #fff;
  padding: 54px 0 34px 0;
}

.team__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 107%;
  color: #fff;
  text-align: center;
  margin-bottom: 38px;
}

.team__subtitle {
  font-weight: 400;
  font-size: 17px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 39px;
}

.team__list {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  flex-wrap: nowrap;
  margin-bottom: 55px;
}

.team__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  text-align: center;
}

@media (max-width: 1023.98px) {
  .team__item {
    min-width: 100%;
  }
}

.team__avatar-wrapper {
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  max-width: 192px;
  max-height: 192px;
}

.team__avatar-wrapper:hover .team__avatar-hover {
  top: 50%;
}

.team__avatar-hover {
  background: rgba(0, 191, 128, 0.76);
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 30px;
  top: 100%;
  transition: top 0.2s ease;
}

.team__avatar {
  width: 100%;
  height: 100%;
}

.team__post {
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  margin-bottom: 18px;
}

.team__name {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #beffb1;
}

.team__position {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.team__button-more {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  border-radius: 100px;
  padding: 10px 28px;
  background: var(--main-purple);
}

.team__pagination {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.team__pagination-index {
  cursor: pointer;
  display: flex;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(77, 193, 150, 0.45);
}

.team__pagination-index.active {
  width: 12px;
  height: 12px;
  background-color: #4dc196;
}

.team__pagination-prev {
  display: flex;
  align-items: center;
}

.price {
  background: linear-gradient(-30deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
  padding: 42px 0 62px 0;
  margin-bottom: -30px;
}

.price__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 1023.98px) {
  .price__title {
    font-size: 40px;
  }
}

.price__descr {
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 15px;
}

@media (max-width: 1023.98px) {
  .price__descr {
    font-size: 16px;
  }
}

.price__list {
  display: flex;
  margin-top: 47px;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.price__item {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  padding: 23px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

.price__item-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.price__item-subtitle {
  font-weight: 600;
  font-size: 17px;
  line-height: 129%;
  letter-spacing: 0.01em;
  margin-bottom: 15px;
}

.price__value {
  display: flex;
  gap: 17px;
  align-items: center;
  font-weight: 600;
  font-size: 36px;
  line-height: 133%;
  letter-spacing: 0.01em;
  margin-bottom: 21px;
}

.price__inner-list {
  max-width: 240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price__image-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.price__image {
  margin-top: 20px;
  width: 100%;
}

.price__button {
  display: flex;
  justify-content: center;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  border-radius: 70px;
  background-color: var(--main-purple);
  color: #fff;
  padding: 16px 16px;
  cursor: pointer;
}

.support {
  color: #fff;
  padding: 20px 0 40px 0;
}

.support__title {
  font-weight: 600;
  font-size: 60px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 22px;
}

@media (max-width: 1023.98px) {
  .support__title {
    font-size: 40px;
  }
}

.support__descr {
  font-weight: 400;
  font-size: 19px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 22px;
}

@media (max-width: 1023.98px) {
  .support__descr {
    font-size: 16px;
  }
}

.support__button {
  display: inline !important;
  padding: 12px 24px;
  border-radius: 24px;
}

.support__button--green {
  border: 2px solid var(--main-green);
  color: var(--main-green);
}

.support__button--purple {
  border: 2px solid var(--main-purple);
  color: var(--main-purple);
}

.support__cell {
  background-color: #fff;
  padding: 30px 0;
  font-weight: 500;
  color: #000;
}

.support__cell--head {
  background-color: var(--main-green);
  font-weight: 800;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0.02em;
}

.support__table {
  display: grid;
  flex-direction: column;
  grid-template-columns: 13% 11% 1fr 11% 11%;
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 13px;
}

@media (max-width: 1023.98px) {
  .support__table {
    display: none;
  }
}

.support__cell--1 {
  grid-area: 1/1/2/2;
}

.support__cell--2 {
  grid-area: 1/2/2/3;
}

.support__cell--3 {
  grid-area: 1/3/2/4;
}

.support__cell--4 {
  grid-area: 1/4/2/5;
}

.support__cell--5 {
  grid-area: 1/5/2/6;
}

.support__cell--6 {
  grid-area: 2/1/3/2;
}

.support__cell--7 {
  grid-area: 2/2/3/3;
}

.support__cell--8 {
  grid-area: 2/3/3/4;
}

.support__cell--9 {
  grid-area: 2/4/3/5;
}

.support__cell--10 {
  grid-area: 2/5/3/6;
}

.support__cell--11 {
  grid-area: 3/1/4/2;
}

.support__cell--12 {
  grid-area: 3/2/4/3;
}

.support__cell--13 {
  grid-area: 3/3/4/4;
}

.support__cell--14 {
  grid-area: 3/4/4/5;
}

.support__cell--15 {
  grid-area: 3/5/4/6;
}

.support__cell--16 {
  grid-area: 4/1/5/2;
}

.support__cell--17 {
  grid-area: 4/2/5/3;
}

.support__cell--18 {
  grid-area: 4/3/5/4;
}

.support__cell--19 {
  grid-area: 4/4/5/5;
}

.support__cell--20 {
  grid-area: 4/5/5/6;
}

.support__cell--21 {
  grid-area: 5/1/6/3;
}

.support__cell--22 {
  grid-area: 5/3/6/4;
}

.support__cell--23 {
  grid-area: 5/4/6/5;
}

.support__cell--24 {
  grid-area: 5/5/6/6;
}

.support__cell--5,
.support__cell--10,
.support__cell--15,
.support__cell--20,
.support__cell--24 {
  border-radius: 0 12px 12px 0;
}

.support__cell--1,
.support__cell--6,
.support__cell--11,
.support__cell--16,
.support__cell--21 {
  border-radius: 12px 0 0 12px;
  padding-left: 30px;
}

.support__table--mobile {
  display: none;
}

@media (max-width: 1023.98px) {
  .support__table--mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .support__table--mobile .support__cell {
    border-radius: 0;
    padding: 30px;
  }

  .support__table--mobile .support__table-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
}

.order {
  background: linear-gradient(90deg, rgba(77, 193, 150, 0.98) 57.21%, rgba(123, 76, 250, 0.28) 100%);
  padding: 60px 0 30px 0;
  margin-top: -30px;
  z-index: -1;
  color: #fff;
}

.order__inner {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1023.98px) {
  .order__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.order__title {
  font-weight: 700;
  font-size: 56px;
  line-height: 125%;
  margin-bottom: 20px;
}

@media (max-width: 1023.98px) {
  .order__title {
    font-size: 40px;
  }
}

.order__contacts {
  font-weight: 400;
  font-size: 26px;
  line-height: 162%;
}

@media (max-width: 1023.98px) {
  .order__contacts {
    font-size: 20px;
  }
}

.application {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  color: #000;
}

@media (max-width: 1023.98px) {
  .application {
    padding: 20px;
  }
}

.application__title {
  font-weight: 700;
  font-size: 23px;
  text-align: center;
  background-position: 10px;
  margin-bottom: 20px;
}

.application__descr {
  font-weight: 500;
  font-size: 14px;
  color: #5d5d5d;
  margin-bottom: 61px;
}

.application__form {
  display: flex;
  flex-direction: column;
}

.application__lable {
  font-weight: 400;
  font-size: 14px;
  color: #5d5d5d;
}

.application__input {
  width: 100%;
  height: 42px;
  border-bottom: 1px solid #ecedf2;
  margin-bottom: 24px;
}

.application__button {
  font-weight: 500;
  font-size: 17px;
  line-height: 118%;
  border-radius: 12px;
  padding: 12px 56px;
  background: var(--main-purple);
  color: #fff;
  width: fit-content;
  align-self: flex-end;
}

@media (max-width: 1023.98px) {
  .application__button {
    align-self: center;
  }
}

.faq {
  background-color: transparent;
}

.faq__title {
  font-weight: 600;
  font-size: 60px;
  line-height: 130%;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

@media (max-width: 1023.98px) {
  .faq__title {
    font-size: 40px;
  }
}

.faq__descr {
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  margin-bottom: 20px;
}

@media (max-width: 1023.98px) {
  .faq__descr {
    font-size: 15px;
  }
}

.faq__inner {
  padding: 49px 0 81px 0;
  display: grid;
  grid-template-columns: 1fr 45%;
  gap: 84px;
}

@media (max-width: 1023.98px) {
  .faq__inner {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
}

.faq__buttons-wrapper {
  padding-top: 20px;
  display: flex;
  gap: 48px;
  align-items: center;
}

.faq__list {
  border-top: 1px solid #000;
  max-height: 519px;
  overflow-y: auto;
}

.faq__item {
  border-bottom: 1px solid #000;
  padding: 20px;
  cursor: pointer;
}

.faq__item.active .faq__item-head {
  margin-bottom: 30px;
}

.faq__item.active .faq__dropdown {
  display: block;
}

.faq__item.active .faq__item-head::before {
  display: none;
}

.faq__item-head {
  position: relative;
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: -0.03em;
  padding-right: 30px;
}

.faq__item-head::after {
  content: "";
  display: flex;
  width: 14px;
  height: 2px;
  background: #000;
  border-radius: 1px;
  position: absolute;
  right: 0;
  top: 50%;
}

.faq__item-head::before {
  content: "";
  display: flex;
  width: 2px;
  height: 14px;
  background: #000;
  border-radius: 1px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-6px);
}

.faq__dropdown {
  font-weight: 400;
  font-size: 17px;
  line-height: 180%;
  color: #878c91;
  display: none;
}

.faq__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 180%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #010205;
}

.faq__button {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  border-radius: 50px;
  padding: 17px 16px;
  background-color: var(--main-purple);
  color: #fff;
}

.faq__list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.faq__list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.faq__list::-webkit-scrollbar-thumb {
  background: var(--main-green);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

.faq__list::-webkit-scrollbar-thumb:hover {
  background: var(--main-green);
}

/* Для Firefox и других (стандарты): применяем только если ::-webkit-scrollbar НЕ поддерживается */
@supports not selector(::-webkit-scrollbar) {
  .faq__list {
    scrollbar-width: thin;
    scrollbar-color: var(--main-green) #f1f1f1;
  }
}

.person-main {
  background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 14.4%, #fff 25.4%);
  padding-bottom: 6.25rem;
  margin-bottom: -6.25rem;
}

.policy-main {
  border-radius: 50px 50px 0 0;
  padding-bottom: 6.25rem;
  margin-bottom: -6.25rem;
  background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
}

.green-text {
  font-weight: 800;
  color: #00bf80;
}

.text-green-main {
  color: var(--main-green);
}

.hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.section-border {
  border-radius: 32px;
  position: relative;
}

.section-border--green {
  background: linear-gradient(180deg, #0f4157 4.81%, #00bf80 41.83%, #2a2525 93.75%);
  border: 1px solid #538b62;
}

.section-border--black {
  background-image: url(/assets/images/new-main/border-section-bg-dark.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.green-bg-wrapper {
  background: linear-gradient(-30deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
  padding-bottom: 90px;
  margin-bottom: -80px;
}

.header-wrapper--main {
  background-color: transparent;
  padding-bottom: 75px;
}

.header-wrapper--main .promo {
  background-color: transparent;
}

.main-form__checkbox span a {
  text-decoration: underline;
}

.person-modal__image--programming {
  background-image: url(../images/case/programming.svg);
  background-size: 80% !important;
  background-position: center right;
}

.promo-case {
  padding-top: 170px;
}

.promo-case__subtitle {
  font-weight: 700;
  font-size: 46px;
  line-height: 120%;
  margin-bottom: 53px;
}

@media (max-width: 1023.98px) {
  .promo-case__subtitle {
    font-size: 30px;
    margin-bottom: 25px;
  }
}

.promo-case__title {
  font-weight: 700;
  font-size: 46px;
  line-height: 120%;
  color: #fff;
  max-width: 943px;
  margin-bottom: 20px;
}

@media (max-width: 1023.98px) {
  .promo-case__title {
    font-size: 30px;
  }
}

.promo-case__btn {
  display: flex;
  width: fit-content;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  background: var(--main-purple);
  border-radius: 100px;
  padding: 14px 28px;
  margin-bottom: 105px;
}

@media (max-width: 1023.98px) {
  .promo-case__btn {
    margin-bottom: 50px;
  }
}

.case-block {
  background-image: url(../images/case/case-block-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding-top: 73px;
  margin-bottom: -100px;
  padding-bottom: 150px;
}

.case-block__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.case-block__title span,
.case-block .case-block__subtitle span {
  color: #000;
}

.case-block__title {
  font-weight: 600;
  font-size: 48px;
  line-height: 70%;
  margin-bottom: 25px;
}

.case-block__cell {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1023.98px) {
  .case-block__cell {
    width: 100%;
  }
}

.case-block__subtitle {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
}

.case-block__phone {
  display: flex;
  align-self: flex-end;
  position: relative;
  max-height: 900px;
}

@media (max-width: 1023.98px) {
  .case-block__phone {
    max-width: 320px;
    align-self: center;
  }
}

@media (max-width: 1023.98px) {
  .case-block__phone img {
    width: 100%;
  }
}

.case-block__overlay {
  height: 666px;
  width: 350px;
  position: absolute;
  max-height: 700px;
  overflow: auto;
  top: 80px;
  left: 35px;
  scrollbar-width: none;
  /* Скрывает скроллбар */
}

.case-block__overlay::-webkit-scrollbar {
  display: none;
  /* Скрывает скроллбар */
}

@media (max-width: 1023.98px) {
  .case-block__overlay {
    top: 67px;
    left: 28px;
    width: calc(100% - 54px);
    height: calc(100% - 135px);
  }
}

.create-process {
  padding: 39px 0;
}

.create-process__title {
  margin-bottom: 38px;
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
}

.create-process__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
}

@media (max-width: 1023.98px) {
  .create-process__steps {
    display: flex;
    flex-direction: column;
  }
}

.create-process__number {
  font-weight: 700;
  font-size: 64px;
  line-height: 83%;
  background: linear-gradient(180deg, #04ba84 0%, #497cc8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.create-process__left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.create-process__right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.create-process__item {
  background: #d7f9eb;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 30px;
}

@media (max-width: 1023.98px) {
  .create-process__item {
    padding: 20px;
  }
}

.case-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1023.98px) {
  .case-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.case-details__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  margin-bottom: 10px;
}

@media (max-width: 1023.98px) {
  .case-details__title {
    font-size: 30px;
  }
}

.case-details__text {
  max-width: 614px;
}

.case-result {
  padding: 30px 16px;
  color: #fff;
}

.case-result__wrapper {
  background-image: url(../images/case/case-result-phone.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}

@media (max-width: 1023.98px) {
  .case-result__wrapper {
    background-image: none;
  }
}

.case-result__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 1023.98px) {
  .case-result__title {
    font-size: 30px;
  }
}

.case-result__inner {
  display: grid;
  grid-template-columns: 66% 1fr;
}

@media (max-width: 1023.98px) {
  .case-result__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.case-result__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 360px;
}

.case-result__button {
  border-radius: 100px;
  padding: 9px 28px;
  width: 100%;
  text-align: center;
  background-color: var(--main-purple);
}

.case-seo-result {
  padding: 30px 16px;
  font-size: 20px;
}

.case-seo-result__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  background: linear-gradient(90deg, #00bf80 0%, #7b4cfa 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 33px;
  margin-top: 33px;
}

.case-seo-result__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-bottom: 50px;
}

@media (max-width: 1023.98px) {
  .case-seo-result__content {
    display: flex;
    flex-direction: column;
  }
}

.case-seo-result__desc {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.case-seo-result__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.case-seo-result__list li {
  display: grid;
  align-items: center;
  grid-template-columns: 30px 1fr;
  gap: 15px;
}

.case-seo-result__table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-seo-result__table-head {
  font-weight: 700;
  font-size: 22px;
  line-height: 140%;
  max-width: 300px;
}

.case-seo-result__table-head--right {
  text-align: end;
}

.case-seo-result__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
}

.case-seo-result__row:nth-child(odd) {
  background: #d7f9eb;
}

.case-order {
  padding-bottom: 150px;
  margin-bottom: -50px;
}

.person-modal__image--programming {
  background-image: url(../images/case/programming.svg);
  background-size: 80% !important;
  background-position: center right;
}

.person-main {
  background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 14.4%, #fff 25.4%);
  padding-bottom: 6.25rem;
  margin-bottom: -6.25rem;
}

.policy-main {
  border-radius: 50px 50px 0 0;
  padding-bottom: 6.25rem;
  margin-bottom: -6.25rem;
  background: linear-gradient(-35deg, #5ae9b4 0%, #fffa80 30.4%, #fff 52.4%);
}

.green-text {
  font-weight: 800;
  color: #00bf80;
}

.text-green-main {
  color: var(--main-green);
}


.header-wrapper--case {
  background-image: url(../images/case/main-bg.png);
  background-size: contain;
  background-position: center right;
  background-color: #222;
  background-repeat: no-repeat;
  padding-bottom: 120px;
  margin-bottom: -100px;
}

@media (max-width: 1023.98px) {
  .header-wrapper--case {
    background-image: none;
  }
}



.text-gradient {
  background: linear-gradient(90deg, #00bf80 0%, #7b4cfa 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-bg-gradient {
  background: linear-gradient(90deg, #e7e0fe 0%, #d7f8eb 100%);
}

.highlight.highlight--lite {
  background: linear-gradient(90deg, rgba(123, 76, 250, 0.18) 0%, rgba(30, 221, 144, 0.18) 100%);
}

.sitemap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 21px;
}


.sitemap {
  padding-top: 60px;
  padding-bottom: 100px;
}
.sitemap__col {}

.sitemap__link {
  display: block;
  margin-bottom: 21px;
  font-size: 18px;
  font-weight: 500;
  padding: 7px 10px;
  width: 100%;
  text-align: center;
  border: 1px solid #000;
  border-radius: 8px;
}

.sitemap__link.main {
  border: none;
  background: #1c8d67;
  color: #fff;
}

.sitemap__link:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.35);
}

@media (max-width: 1023.98px) {
  .sitemap__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sitemap__link {
    margin-bottom: 10px;
  }
}